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
I want to leave the possibility that multiple tests are going to fail. I don't want to stop at the first test. Delayed assert / multiple failures per test describes one way to do it using the --maxfail parameter. There is a solution in StackOverflow: How to run all PyTest tests even if some of them fail?. I construe Stopping after the first (or N) failures to mean that if I do not include the -x option, then pytest will continue on a failure.
--maxfail
-x
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I want to leave the possibility that multiple tests are going to fail. I don't want to stop at the first test.
Delayed assert / multiple failures per test describes one way to do it using the
--maxfail
parameter. There is a solution in StackOverflow: How to run all PyTest tests even if some of them fail?. I construe Stopping after the first (or N) failures to mean that if I do not include the-x
option, then pytest will continue on a failure.The text was updated successfully, but these errors were encountered: