-
Notifications
You must be signed in to change notification settings - Fork 66
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
The use of setup.py test is deprecated #116
Comments
As far as I'm aware, pytest isn't used. So this would need an alternative. Sounds like tox is an option. |
Trying to run the tests on Python 3.12 fails due to the lack of setuptools:
Hacking that into requirements.txt at least makes the tests pass:
|
@jelly Thanks for poiting this out! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi! When packaging version 3.0.0 for Arch Linux I noticed that this project still uses the deprecated
python setup.py test
way of running tests.This leads to warnings:
The current way of running tests should be replaced with e.g. calls to
pytest
instead (this seems to require some environment setup for this project to work) to more generically also work with future versions of setuptools.The text was updated successfully, but these errors were encountered: