We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41f1979 commit 1bed514Copy full SHA for 1bed514
doc/en/skipping.rst
@@ -83,8 +83,8 @@ As with all function :ref:`marking <mark>` you can skip test functions at the
83
`whole class- or module level`_. If your code targets python2.6 or above you
84
use the skipif decorator (and any other marker) on classes::
85
86
- @pytest.mark.skipif(sys.platform != 'win32',
87
- reason="requires windows")
+ @pytest.mark.skipif(sys.platform == 'win32',
+ reason="does not run on windows")
88
class TestPosixCalls:
89
90
def test_function(self):
0 commit comments