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
This is basically running numpy with pytest.
Here are some observations:
We need setuptools support. Newer numpy has switched to setuptools. This is PR Add support to setuptools based packages. #10
All tests needs to be patched to include __init__.py, due to the unique name workaround. see, e.g. "unique basename" error vs __init__.py in test sub-folders is a UX mayhem pytest-dev/pytest#529
__init__.py
Due to 1, some tests that does relative imports needs to be aware of the relative imports, requiring adding dots to the import lines.
A lot of yielded tests needs to be changed to parametrized tests.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is basically running numpy with pytest.
Here are some observations:
We need setuptools support. Newer numpy has switched to setuptools. This is PR Add support to setuptools based packages. #10
All tests needs to be patched to include
__init__.py
, due to the unique name workaround. see, e.g."unique basename" error vs __init__.py in test sub-folders is a UX mayhem pytest-dev/pytest#529
Due to 1, some tests that does relative imports needs to be aware of the relative imports, requiring adding dots to the import lines.
A lot of yielded tests needs to be changed to parametrized tests.
The text was updated successfully, but these errors were encountered: