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
Tests cannot be run from an installed package:
pip install mdpow pytest --pyargs mdpow # <--- FAILS
The files under mdpow/tests/testing_resources/ are not included as data files in the package.
mdpow/tests/testing_resources/
The text was updated successfully, but these errors were encountered:
Including the testing resources increases the package size from 3.1M to 23M.
Sorry, something went wrong.
Following https://setuptools.pypa.io/en/latest/userguide/datafiles.html we could include data files in the tar.gz but exclude from the wheel.
bb02461
Note that pip installing from sdist builds a wheel and that excludes tests so it's still not possible to run
pytest --pyargs mdpow
For right now, must run tests with sources.
orbeckst
No branches or pull requests
Tests cannot be run from an installed package:
The files under
mdpow/tests/testing_resources/
are not included as data files in the package.The text was updated successfully, but these errors were encountered: