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
When using pytestmark = pytest.mark.skip("reason") on a module you will get a SKIP report for every test in that module (in the short test summary info).
pytestmark = pytest.mark.skip("reason")
SKIP
short test summary info
There happens some folding already, which could be extended:
pytest/_pytest/skipping.py
Lines 351 to 360 in 6908d93
The text was updated successfully, but these errors were encountered:
@nicoddemus @RonnyPfannschmidt as the PR is merged this can be closed I think.
Successfully merging a pull request may close this issue.
When using
pytestmark = pytest.mark.skip("reason")
on a module you will get aSKIP
report for every test in that module (in theshort test summary info
).There happens some folding already, which could be extended:
pytest/_pytest/skipping.py
Lines 351 to 360 in 6908d93
The text was updated successfully, but these errors were encountered: