Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

skipped test_all #283

Closed
ev-br opened this issue Mar 21, 2025 · 2 comments · Fixed by #286
Closed

skipped test_all #283

ev-br opened this issue Mar 21, 2025 · 2 comments · Fixed by #286
Milestone

Comments

@ev-br
Copy link
Member

ev-br commented Mar 21, 2025

5473d84 skipped a test, tests/test_all.py, which started failing after adding an unrelated tests/test_torch.py.
The test itself seems to probe the contents of internal implementation modules, and fails essientially on this:

In [16]: from array_api_compat.common import _aliases

In [17]: all_names = set(n for n in _aliases.__all__ if not n.startswith('_'))

In [18]: dir_names = set(n for n in dir(_aliases) if not n.startswith('_'))

In [19]: dir_names - all_names      # not empty, failure
Out[19]: 
{'NamedTuple',
 'TYPE_CHECKING',
 'annotations',
 'array_namespace',
 'device',
 'inspect',
 'is_cupy_namespace'}

I've to admit I'm not sure what the intention is, this seems to be a Chesterton fence of sorts. Do you happen to remember the context @asmeurer ?

@asmeurer
Copy link
Member

Yes, that test ensure that the __all__ variable is defined correctly. We are defining it in a way that makes it difficult to manage in the ways you usually would, since we re-export names from existing packages, so we can't just manually list out every name that should be included. I would suggest keeping this test working. There's more context here #95.

Note that if a name is in a module that shouldn't be exported you can add it to _all_ignore.

@ev-br
Copy link
Member Author

ev-br commented Mar 22, 2025

Thanks @asmeurer !

So common._aliases.__all__ was "wrong" for a while, but testing did not pick it up until an unrelated test actually imported the module. gh-286 adds a fix to __all__, plus a couple of small tweaks to make it less likely to miss a problem going forward. Would appreciate if you could take a look-through @asmeurer

@ev-br ev-br added this to the 1.12 milestone Mar 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants