We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following works fine:
# solution import numpy as np np.random.randint(1, 7) # sct Ex().check_function('numpy.random.randint')
The following does not:
# solution import numpy as np for x in range(0): np.random.randint(1, 7) # sct Ex().check_for_loop().check_body().check_function('numpy.random.randint')
This is because the mappings of aliases onto their modules are figured out on a per-state basis (instead of once, on the root).
There's a failing test (with the xfail mark) here.
xfail
This is a pretty big bug!!!
The text was updated successfully, but these errors were encountered:
Add failing test for #353
2232d4e
eb2c735
8ca6f72
No branches or pull requests
The following works fine:
The following does not:
This is because the mappings of aliases onto their modules are figured out on a per-state basis (instead of once, on the root).
There's a failing test (with the
xfail
mark) here.This is a pretty big bug!!!
The text was updated successfully, but these errors were encountered: