Merge pull request #5135 from dougthor42/patch-1
[Docs] Fix typo in skipping.rst
This commit is contained in:
commit
008d04398a
|
@ -208,7 +208,7 @@ Here's a quick guide on how to skip tests in a module in different situations:
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
pytestmark = pytest.mark.skipif(sys.platform == "win32", "tests for linux only")
|
pytestmark = pytest.mark.skipif(sys.platform == "win32", reason="tests for linux only")
|
||||||
|
|
||||||
3. Skip all tests in a module if some import is missing:
|
3. Skip all tests in a module if some import is missing:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue