-
Notifications
You must be signed in to change notification settings - Fork 2
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 support for Python 3.13 #266
base: master
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #266 +/- ##
==========================================
- Coverage 79.39% 78.35% -1.04%
==========================================
Files 18 17 -1
Lines 1742 1737 -5
==========================================
- Hits 1383 1361 -22
- Misses 359 376 +17 ☔ View full report in Codecov by Sentry. |
pyproject.toml
Outdated
@@ -136,7 +138,7 @@ good-names = [ | |||
|
|||
[tool.pytest.ini_options] | |||
minversion = "7.0" | |||
addopts = "-rs --cov=tripper --cov-report=term --doctest-modules" | |||
addopts = "-rs --cov=tripper --cov-report=term --doctest-modules --ignore=examples --ignore=tripper" |
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.
addopts = "-rs --cov=tripper --cov-report=term --doctest-modules --ignore=examples --ignore=tripper" | |
addopts = "-rs --cov=tripper --cov-report=term --doctest-modules --ignore=examples" |
I also do not like ignoring of examples, but tripper which is our code-base should definitely not be ignored.
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.
I also do not like ignoring of examples, but tripper which is our code-base should definitely not be ignored.
Replaced it with new --doctest-ignore-import-errors
Description
Add support for Python 3.13.
Type of change
Checklist for the reviewer
This checklist should be used as a help for the reviewer.