-
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
Fix aiomysql.sa in Python 3.7 and run tests for python 3.7 in CI #434
Conversation
Codecov Report
@@ Coverage Diff @@
## master #434 +/- ##
==========================================
+ Coverage 92.28% 92.34% +0.05%
==========================================
Files 9 9
Lines 1180 1188 +8
Branches 172 173 +1
==========================================
+ Hits 1089 1097 +8
Misses 64 64
Partials 27 27
Continue to review full report at Codecov.
|
@terrycain I need someone to review this PR. |
Codecov Report
@@ Coverage Diff @@
## master #434 +/- ##
==========================================
+ Coverage 92.28% 92.34% +0.05%
==========================================
Files 9 9
Lines 1180 1188 +8
Branches 172 173 +1
==========================================
+ Hits 1089 1097 +8
Misses 64 64
Partials 27 27
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #434 +/- ##
==========================================
+ Coverage 92.28% 92.34% +0.05%
==========================================
Files 9 9
Lines 1180 1188 +8
Branches 172 173 +1
==========================================
+ Hits 1089 1097 +8
Misses 64 64
Partials 27 27
Continue to review full report at Codecov.
|
.travis.yml
Outdated
env: PYTHONASYNCIODEBUG= | ||
addons: | ||
mysql: 5.7 | ||
|
||
|
||
before_script: | ||
- "sudo systemctl start mysql || true" |
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.
Add a global addons
section instead.
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.
Updated, add - mysql
in global services
section ,
Setting up Databases and Services - Travis CI
Anything updates? |
@CeresCa? |
Am busy with a new job but this projects been left for a while. Will have a look this coming week once ive fixed travis |
Remove the stuff from .travis matrix except from changing the main python version 3.6 to 3.7 |
does this PR abandoned? |
thank you for the PR. python 3.7 support has been implemented quite a while ago, therefore this is no longer relevant. |
for the SA fix, this should be covered in #494, which also includes a test case. |
What do these changes do?
Fix async iterator protocol in aiomysql.utils._SAConnectionContextManager,
and run tests for python 3.7 in CI.
__aiter__
and__anext__
methods for_SAConnectionContextManager
Are there changes in behavior for the user?
No changes.
Related issue number
#410
Checklist
CHANGES
folder<issue_id>.<type>
(e.g.588.bugfix
)issue_id
change it to the pr id after creating the PR.feature
: Signifying a new feature..bugfix
: Signifying a bug fix..doc
: Signifying a documentation improvement..removal
: Signifying a deprecation or removal of public API..misc
: A ticket has been closed, but it is not of interest to users.Fix issue with non-ascii contents in doctest text files.