summaryrefslogtreecommitdiff
path: root/doc/en/usage.rst
diff options
context:
space:
mode:
authorBruno Oliveira <nicoddemus@gmail.com>2020-07-08 17:51:01 -0400
committerBruno Oliveira <nicoddemus@gmail.com>2020-07-08 17:51:01 -0400
commit7d033a89505484d03b1fc4a885ecea1777ca7457 (patch)
tree34530bfde1091003fdc9c12af2875e8a259d5578 /doc/en/usage.rst
parent64b19595a5820ba7fc0afbeba5d891361c00c9db (diff)
downloadpytest-7d033a89505484d03b1fc4a885ecea1777ca7457.tar.gz
Prepare release version 6.0.0rc1
Diffstat (limited to 'doc/en/usage.rst')
-rw-r--r--doc/en/usage.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/en/usage.rst b/doc/en/usage.rst
index e25793f87..aafdeb55f 100644
--- a/doc/en/usage.rst
+++ b/doc/en/usage.rst
@@ -216,7 +216,7 @@ Example:
$ pytest -ra
=========================== test session starts ============================
- platform linux -- Python 3.x.y, pytest-5.x.y, py-1.x.y, pluggy-0.x.y
+ platform linux -- Python 3.x.y, pytest-6.x.y, py-1.x.y, pluggy-0.x.y
cachedir: $PYTHON_PREFIX/.pytest_cache
rootdir: $REGENDOC_TMPDIR
collected 6 items
@@ -241,7 +241,7 @@ Example:
test_example.py:14: AssertionError
========================= short test summary info ==========================
- SKIPPED [1] $REGENDOC_TMPDIR/test_example.py:22: skipping this test
+ SKIPPED [1] test_example.py:22: skipping this test
XFAIL test_example.py::test_xfail
reason: xfailing this test
XPASS test_example.py::test_xpass always xfail
@@ -274,7 +274,7 @@ More than one character can be used, so for example to only see failed and skipp
$ pytest -rfs
=========================== test session starts ============================
- platform linux -- Python 3.x.y, pytest-5.x.y, py-1.x.y, pluggy-0.x.y
+ platform linux -- Python 3.x.y, pytest-6.x.y, py-1.x.y, pluggy-0.x.y
cachedir: $PYTHON_PREFIX/.pytest_cache
rootdir: $REGENDOC_TMPDIR
collected 6 items
@@ -300,7 +300,7 @@ More than one character can be used, so for example to only see failed and skipp
test_example.py:14: AssertionError
========================= short test summary info ==========================
FAILED test_example.py::test_fail - assert 0
- SKIPPED [1] $REGENDOC_TMPDIR/test_example.py:22: skipping this test
+ SKIPPED [1] test_example.py:22: skipping this test
== 1 failed, 1 passed, 1 skipped, 1 xfailed, 1 xpassed, 1 error in 0.12s ===
Using ``p`` lists the passing tests, whilst ``P`` adds an extra section "PASSES" with those tests that passed but had
@@ -310,7 +310,7 @@ captured output:
$ pytest -rpP
=========================== test session starts ============================
- platform linux -- Python 3.x.y, pytest-5.x.y, py-1.x.y, pluggy-0.x.y
+ platform linux -- Python 3.x.y, pytest-6.x.y, py-1.x.y, pluggy-0.x.y
cachedir: $PYTHON_PREFIX/.pytest_cache
rootdir: $REGENDOC_TMPDIR
collected 6 items