Skip to content

Commit e08193e

Browse files
regen
1 parent c081c0f commit e08193e

File tree

4 files changed

+5
-13
lines changed

4 files changed

+5
-13
lines changed

doc/en/example/parametrize.rst

+2-5
Original file line numberDiff line numberDiff line change
@@ -484,11 +484,8 @@ Running it results in some skips if we don't have all the python interpreters in
484484
.. code-block:: pytest
485485
486486
. $ pytest -rs -q multipython.py
487-
ssssssssssss...ssssssssssss [100%]
488-
========================= short test summary info ==========================
489-
SKIPPED [12] $REGENDOC_TMPDIR/CWD/multipython.py:29: 'python3.5' not found
490-
SKIPPED [12] $REGENDOC_TMPDIR/CWD/multipython.py:29: 'python3.7' not found
491-
3 passed, 24 skipped in 0.12s
487+
........................... [100%]
488+
27 passed in 0.12s
492489
493490
Indirect parametrization of optional implementations/imports
494491
--------------------------------------------------------------------

doc/en/example/simple.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ Now we can profile which test functions execute the slowest:
448448
449449
test_some_are_slow.py ... [100%]
450450
451-
========================= slowest 3 test durations =========================
451+
=========================== slowest 3 durations ============================
452452
0.30s call test_some_are_slow.py::test_funcslow2
453453
0.20s call test_some_are_slow.py::test_funcslow1
454454
0.10s call test_some_are_slow.py::test_funcfast

doc/en/getting-started.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Install ``pytest``
2828
.. code-block:: bash
2929
3030
$ pytest --version
31-
This is pytest version 5.x.y, imported from $PYTHON_PREFIX/lib/python3.8/site-packages/pytest/__init__.py
31+
This is pytest version 5.x.y, imported from $PYTHON_PREFIX/lib/python3.7/site-packages/pytest/__init__.py
3232
3333
.. _`simpletest`:
3434

doc/en/writing_plugins.rst

+1-6
Original file line numberDiff line numberDiff line change
@@ -442,13 +442,8 @@ additionally it is possible to copy examples for an example folder before runnin
442442
$REGENDOC_TMPDIR/test_example.py:4: PytestExperimentalApiWarning: testdir.copy_example is an experimental api that may change over time
443443
testdir.copy_example("test_example.py")
444444
445-
test_example.py::test_plugin
446-
$PYTHON_PREFIX/lib/python3.8/site-packages/_pytest/terminal.py:287: PytestDeprecationWarning: TerminalReporter.writer attribute is deprecated, use TerminalReporter._tw instead at your own risk.
447-
See https://docs.pytest.org/en/latest/deprecations.html#terminalreporter-writer for more information.
448-
warnings.warn(
449-
450445
-- Docs: https://docs.pytest.org/en/latest/warnings.html
451-
====================== 2 passed, 2 warnings in 0.12s =======================
446+
======================= 2 passed, 1 warning in 0.12s =======================
452447
453448
For more information about the result object that ``runpytest()`` returns, and
454449
the methods that it provides please check out the :py:class:`RunResult

0 commit comments

Comments
 (0)