summaryrefslogtreecommitdiff
path: root/doc/en/example
diff options
context:
space:
mode:
authorpytest bot <pytestbot@gmail.com>2020-03-12 14:14:35 +0000
committerpytest bot <pytestbot@gmail.com>2020-03-12 14:14:35 +0000
commitc9fd1bdbd6d25917d33b27511d8ebc2a65538899 (patch)
treecb7edbd6dfd32e8ff941dcab19b8189702c64b52 /doc/en/example
parent93aa988e0152392c233acac1e24bf6db8a2772c7 (diff)
downloadpytest-c9fd1bdbd6d25917d33b27511d8ebc2a65538899.tar.gz
Preparing release version 5.4.0
Diffstat (limited to 'doc/en/example')
-rw-r--r--doc/en/example/parametrize.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/en/example/parametrize.rst b/doc/en/example/parametrize.rst
index 8165060d5..df558d1ba 100644
--- a/doc/en/example/parametrize.rst
+++ b/doc/en/example/parametrize.rst
@@ -484,8 +484,11 @@ Running it results in some skips if we don't have all the python interpreters in
.. code-block:: pytest
. $ pytest -rs -q multipython.py
- ........................... [100%]
- 27 passed in 0.12s
+ ssssssssssss...ssssssssssss [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
Indirect parametrization of optional implementations/imports
--------------------------------------------------------------------