-
Notifications
You must be signed in to change notification settings - Fork 207
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
run tests with python 3.12 #1317
Conversation
blocked by aio-libs/aiohttp#7639 |
d5c7d04
to
c56675c
Compare
pytz20187: pytz==2018.7 | ||
pytz_latest: pytz |
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.
These should remain in deps =
:
pytz20187: pytz==2018.7 | |
pytz_latest: pytz | |
deps = | |
pytz20187: pytz==2018.7 | |
pytz_latest: pytz |
@@ -15,15 +15,10 @@ passenv = | |||
TRAVIS_JOB_NUMBER | |||
TRAVIS_PULL_REQUEST | |||
TRAVIS_REPO_SLUG | |||
deps = | |||
pytest |
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.
pytest
is missing from project.optional-dependencies.test
. This is why CI is failing.
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.
Thanks. It looks like we still need to define all dependencies in tox.ini or make it run pip install independently. Not sure, which way is worse. For now I optioned for using commands_pre to run pip install .[test].
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.
Here you're overriding dependencies, so they need to be in the deps =
array (e.g.: these two are not extras).
Fixing this tests work.
freezegun | ||
!py36: vdirsyncer | ||
py36: vdirsyncer==0.16.8 | ||
python-dateutil |
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.
This one is also missing, but is not required because it is a non-test dependency already.
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.
(nothing to do on this item, just FYI)
955a901
to
fc5ba54
Compare
No description provided.