-
Notifications
You must be signed in to change notification settings - Fork 62
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
Exclude tests directory from installation #209
Comments
2 tasks
akosthekiss
added a commit
to akosthekiss/grammarinator
that referenced
this issue
Dec 25, 2023
- When tool API got split from CLI, MANTIFEST.in was not updated to exclude the right files. - When test folder got changed into a package, setup.cfg was not updated to exclude the new package from the distribution. Fixes renatahodovan#209
renatahodovan
pushed a commit
that referenced
this issue
Dec 25, 2023
- When tool API got split from CLI, MANTIFEST.in was not updated to exclude the right files. - When test folder got changed into a package, setup.cfg was not updated to exclude the new package from the distribution. Fixes #209
@D3vil0p3r Thanks for reporting the issue. Hopefully fixed now. Could you please confirm whether the original issue is resolved? |
It is. Thank you.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The install of grammarinator generates
/usr/lib/python3.11/site-packages/tests/__init__.py
that creates conflicts with other Python packages that installtests
directory (and that need to be fixed too).It is needed also according to Python package guidelines.
Can you please exclude
tests
in yourpyproject.toml
file?Give a look to https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html and search for
exclude
keyword.The text was updated successfully, but these errors were encountered: