We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 630428c + 8cc2107 commit 22a2734Copy full SHA for 22a2734
changelog/3611.doc.rst
@@ -0,0 +1 @@
1
+The description above the example for ``@pytest.mark.skipif`` now better matches the code.
doc/en/skipping.rst
@@ -80,11 +80,11 @@ during import time.
80
81
If you wish to skip something conditionally then you can use ``skipif`` instead.
82
Here is an example of marking a test function to be skipped
83
-when run on a Python3.6 interpreter::
+when run on an interpreter earlier than Python3.6 ::
84
85
import sys
86
@pytest.mark.skipif(sys.version_info < (3,6),
87
- reason="requires python3.6")
+ reason="requires python3.6 or higher")
88
def test_function():
89
...
90
0 commit comments