-
Notifications
You must be signed in to change notification settings - Fork 257
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
add python 3.11 tests #722
Conversation
Codecov Report
@@ Coverage Diff @@
## master #722 +/- ##
========================================
Coverage 92.69% 92.69%
========================================
Files 35 35
Lines 5432 5436 +4
Branches 586 914 +328
========================================
+ Hits 5035 5039 +4
Misses 309 309
Partials 88 88
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
3468792
to
fd8f849
Compare
uvloop is disabled on python 3.11 for now due to cython incompatibility. a new cython version has since been released but uvloop needs to be built against this new cython version. see MagicStack/uvloop#450 and MagicStack/uvloop#459
fd8f849
to
c64ca30
Compare
tests on py3.11 randomly fail: https://github.com/aio-libs/aiomysql/runs/5000103904?check_suite_focus=true#step:12:11 re-running the tests will succeed. I haven't had time to try to repro this locally yet to see if I can figure out a consistently reproducible case. |
after some extensive testing I was finally able to determine the root cause of these failures to be in coverage.py: nedbat/coveragepy#1316 |
This reverts commit c0972d2. coverage.py still has issues with Python 3.11, there's not much point in keeping them if they segfault half the time. nedbat/coveragepy#1316
This reverts commit c0972d2. coverage.py still has issues with Python 3.11, there's not much point in keeping them if they segfault half the time. nedbat/coveragepy#1316
uvloop is disabled on python 3.11 for now due to cython incompatibility. a new cython version has since been released but uvloop needs to be built against this new cython version. see MagicStack/uvloop#450 and MagicStack/uvloop#459
What do these changes do?
add python 3.11 tests.
uvloop is disabled on python 3.11 for now due to cython incompatibility.
a new cython version has since been released but uvloop needs to be built against this new cython version.
see MagicStack/uvloop#450 and MagicStack/uvloop#459
Are there changes in behavior for the user?
no