File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -883,7 +883,7 @@ pytest_mark
883
883
**Tutorial **: :ref: `scoped-marking `
884
884
885
885
Can be declared at the **global ** level in *test modules * to apply one or more :ref: `marks <marks ref >` to all
886
- test functions and methods. Can be either a single mark or a sequence of marks.
886
+ test functions and methods. Can be either a single mark or a list of marks.
887
887
888
888
.. code-block :: python
889
889
@@ -896,7 +896,7 @@ test functions and methods. Can be either a single mark or a sequence of marks.
896
896
897
897
import pytest
898
898
899
- pytestmark = ( pytest.mark.integration, pytest.mark.slow)
899
+ pytestmark = [ pytest.mark.integration, pytest.mark.slow]
900
900
901
901
PYTEST_DONT_REWRITE (module docstring)
902
902
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can’t perform that action at this time.
0 commit comments