-
Notifications
You must be signed in to change notification settings - Fork 223
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
Adapt to getfixturedefs
change in pytest 8.1
#666
Conversation
The signature of this (private) function will change in the upcoming pytest 8.1 release: pytest-dev/pytest#11785 Additionally, the `iterparentnodeids` function is removed, so copy/pasting it for now. I verified that all tests pass when run against pytest main.
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #666 +/- ##
==========================================
- Coverage 95.58% 95.18% -0.41%
==========================================
Files 49 50 +1
Lines 1788 1826 +38
Branches 193 200 +7
==========================================
+ Hits 1709 1738 +29
- Misses 52 57 +5
- Partials 27 31 +4 ☔ View full report in Codecov by Sentry. |
Fixes #668 |
I got the pytest version check wrong, fixing it in #669 |
@youtux , thanks for the fix. Do you know when the fix will be released? |
I'll do a release later today |
pytest-bdd 7.1.1 is out |
The signature of this (private) function will change in the upcoming pytest 8.1 release:
pytest-dev/pytest#11785
Additionally, the
iterparentnodeids
function is removed, so copy/pasting it for now.I verified that all tests pass when run against pytest main.