Skip to content

Commit

Permalink
Docs fix
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenburns committed Apr 2, 2021
1 parent 7964b88 commit 5d90387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/guide/writing_tests.rst
Expand Up @@ -233,7 +233,7 @@ next to the test name/description during the run ::
To conditionally skip a test in some circumstances (for example, on specific OS's), you
can supply a ``when`` predicate to the ``@skip`` decorator. This can be either a boolean
or a Callable, and will be evaluated just before the test is scheduled to be executed. If it
evaluates to ``False``, the test will be skipped. Otherwise the test will run as normal.
evaluates to ``True``, the test will be skipped. Otherwise the test will run as normal.

Here's an example of a test that is skipped on Windows:

Expand Down

0 comments on commit 5d90387

Please sign in to comment.