forked from data-apis/array-api-compat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_all.py
42 lines (29 loc) · 1.4 KB
/
test_all.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
"""
Test that files that define __all__ aren't missing any exports.
You can add names that shouldn't be exported to _all_ignore, like
_all_ignore = ['sys']
This is preferable to del-ing the names as this will break any name that is
used inside of a function. Note that names starting with an underscore are automatically ignored.
"""
import sys
from ._helpers import import_, wrapped_libraries
import pytest
@pytest.mark.parametrize("library", ["common"] + wrapped_libraries)
def test_all(library):
import_(library, wrapper=True)
for mod_name in sys.modules:
if not mod_name.startswith('array_api_compat.' + library):
continue
module = sys.modules[mod_name]
# TODO: We should define __all__ in the __init__.py files and test it
# there too.
if not hasattr(module, '__all__'):
continue
dir_names = [n for n in dir(module) if not n.startswith('_')]
ignore_all_names = getattr(module, '_all_ignore', [])
ignore_all_names += ['annotations', 'TYPE_CHECKING']
dir_names = set(dir_names) - set(ignore_all_names)
all_names = module.__all__
if set(dir_names) != set(all_names):
assert set(dir_names) - set(all_names) == set(), f"Some dir() names not included in __all__ for {mod_name}"
assert set(all_names) - set(dir_names) == set(), f"Some __all__ names not in dir() for {mod_name}"