We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
from unittest import TestCase def test_test(): assert False class FooTest(TestCase): def test_test(self): self.fail()
Run pytest. Two tests should fail. Run with --last-failed. Only one test launched. Try latest 5.3: it works as expected
--last-failed
The text was updated successfully, but these errors were encountered:
Bisected to 1b30514 ("LFPlugin: use sub-plugins to deselect during collection (#6448)") which is a fix for #5301 - cc @blueyed
Sorry, something went wrong.
Likely fixed by #6991, was not backported (#7219).
Indeed fixed via #6991 in master already - sorry, I missed that! Closing this then.
No branches or pull requests
Run pytest. Two tests should fail. Run with
--last-failed
. Only one test launched.Try latest 5.3: it works as expected
The text was updated successfully, but these errors were encountered: