summaryrefslogtreecommitdiff
path: root/doc/en/example
diff options
context:
space:
mode:
authorBruno Oliveira <nicoddemus@gmail.com>2020-06-02 14:19:18 -0300
committerBruno Oliveira <nicoddemus@gmail.com>2020-06-02 14:19:18 -0300
commitbe1a2e440e8e3d83f411478ae802f4b1193ba784 (patch)
treedc86b0ad960d3f23f2f19b1f5ab81c0799587f22 /doc/en/example
parent85b5a289f01696ad9131213bd6045867b46c50c2 (diff)
downloadpytest-be1a2e440e8e3d83f411478ae802f4b1193ba784.tar.gz
Merge pull request #7301 from pytest-dev/release-5.4.3
Prepare release 5.4.3
Diffstat (limited to 'doc/en/example')
-rw-r--r--doc/en/example/parametrize.rst7
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/en/example/parametrize.rst b/doc/en/example/parametrize.rst
index 02fd99004..9500af0d3 100644
--- a/doc/en/example/parametrize.rst
+++ b/doc/en/example/parametrize.rst
@@ -482,11 +482,10 @@ Running it results in some skips if we don't have all the python interpreters in
.. code-block:: pytest
. $ pytest -rs -q multipython.py
- ssssssssssss...ssssssssssss [100%]
+ ssssssssssss......sss...... [100%]
========================= short test summary info ==========================
- SKIPPED [12] $REGENDOC_TMPDIR/CWD/multipython.py:29: 'python3.5' not found
- SKIPPED [12] $REGENDOC_TMPDIR/CWD/multipython.py:29: 'python3.7' not found
- 3 passed, 24 skipped in 0.12s
+ SKIPPED [15] $REGENDOC_TMPDIR/CWD/multipython.py:29: 'python3.5' not found
+ 12 passed, 15 skipped in 0.12s
Indirect parametrization of optional implementations/imports
--------------------------------------------------------------------