-
Notifications
You must be signed in to change notification settings - Fork 7
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
chore: use python3.10 for tests #393
Conversation
#294 does not appear to have been enough. |
tox.ini
Outdated
@@ -12,10 +12,10 @@ commands = | |||
deps = | |||
{[testenv]deps} | |||
commands = | |||
python3 -m pytest tests | |||
python3.10 -m pytest tests |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of specifying them here, we can globally set them like this
[tox]
envlist =
tests
py310
Ah, the issue with tests not running is because GH actions is not automatically triggering them, not because of versions issue. |
So we should undraft #340 then, right? |
Yes, just the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fine to update this file for now. Thank you!
No description provided.