Skip to content

Commit 1b47d96

Browse files
committed
Fix the tests
1 parent c0dd5b0 commit 1b47d96

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_all.py

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ def test_all(library):
3232
continue
3333

3434
dir_names = [n for n in dir(module) if not n.startswith('_')]
35+
if '__array_namespace_info__' in dir(module):
36+
dir_names.append('__array_namespace_info__')
3537
ignore_all_names = getattr(module, '_all_ignore', [])
3638
ignore_all_names += ['annotations', 'TYPE_CHECKING']
3739
dir_names = set(dir_names) - set(ignore_all_names)

0 commit comments

Comments
 (0)