We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0dd5b0 commit 1b47d96Copy full SHA for 1b47d96
tests/test_all.py
@@ -32,6 +32,8 @@ def test_all(library):
32
continue
33
34
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__')
37
ignore_all_names = getattr(module, '_all_ignore', [])
38
ignore_all_names += ['annotations', 'TYPE_CHECKING']
39
dir_names = set(dir_names) - set(ignore_all_names)
0 commit comments