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
Hi, it would be so useful to have the possibility to specify that one test case should be skipped.
The text was updated successfully, but these errors were encountered:
It's a good idea, not sure how to declare it though. There are a few options:
Case(foo=3, bar=f).skip(reason=...)
Case(foo=3, bar=4).mark(pytest.mark.skip(reason=...))
Case(foo=3, bar=4).set_params(marks=pytest.mark.skip(reason=...))
Allowing "skip" opens the door to all kinds of other things that pytest lets you do ...
Sorry, something went wrong.
see also #3
No branches or pull requests
Hi, it would be so useful to have the possibility to specify that one test case should be skipped.
The text was updated successfully, but these errors were encountered: