-
Notifications
You must be signed in to change notification settings - Fork 88
Fix SetupState breakage with upcoming pytest 6.3 #151
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
Conversation
381ada9
to
9582da1
Compare
pytest 6.3 makes some changes to the SetupState class, adjust to that.
@@ -24,6 +24,8 @@ deps = | |||
pytest54: pytest==5.4.* | |||
pytest60: pytest==6.0.* | |||
pytest61: pytest==6.1.* | |||
pytest62: pytest==6.2.* | |||
pytestmaster: git+https://github.com/pytest-dev/pytest.git@master#egg=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.
I like testing against master
.
This change should also be applied to .github/workflows/test.yml
so CI runs them, too.
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.
Sure, added. Using master might of course cause breakage from the pytest side, but hopefully not.
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.
Thank you for this PR and improving the test setup for this plug-in.
I like it.
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 like the changes, too.
Thank you for this PR and the review. 😃 |
pytest 6.3 makes some changes to the SetupState class, adjust to that.