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
Originally reported by: Daniel Hahler (BitBucket: blueyed, GitHub: blueyed)
Given the following test, the reason should be "function level", but is reported as "class level":
import pytest class Tests: pytestmark = [ pytest.mark.skipif(False, reason="class level"), ] @pytest.mark.skipif(True, reason="function level") def test_skip_if(): pass % ~v/pytest % py.test test_skipif.py === test session starts === platform linux -- Python 3.4.2 -- py-1.4.26 -- pytest-2.7.0.dev1 collected 1 items test_skipif.py s === short test summary info ============================== SKIP [1] /home/daniel/Vcs/pytest/_pytest/skipping.py:140: class level === 1 skipped in 0.01 seconds ============================
This is related to issue #665.
The text was updated successfully, but these errors were encountered:
Fixed by #865
Sorry, something went wrong.
No branches or pull requests
Originally reported by: Daniel Hahler (BitBucket: blueyed, GitHub: blueyed)
Given the following test, the reason should be "function level", but is
reported as "class level":
This is related to issue #665.
The text was updated successfully, but these errors were encountered: