Merge pull request #5135 from dougthor42/patch-1

[Docs] Fix typo in skipping.rst
This commit is contained in:
Bruno Oliveira 2019-04-17 14:36:57 -03:00 committed by GitHub
commit 008d04398a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ Here's a quick guide on how to skip tests in a module in different situations:
.. 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: