summaryrefslogtreecommitdiff
path: root/doc/en/example
diff options
context:
space:
mode:
authorBruno Oliveira <bruno@esss.co>2019-12-13 08:51:15 -0300
committerBruno Oliveira <bruno@esss.co>2019-12-13 08:51:15 -0300
commit10fcac7f908b792264c3e6a402aa1aa01345acc4 (patch)
tree7a246e43a0a528b98ab78d9e230ee305c012fc8f /doc/en/example
parent8942a05cfec4b97d7aa94e55d08e41a08397e78e (diff)
downloadpytest-10fcac7f908b792264c3e6a402aa1aa01345acc4.tar.gz
Preparing release version 5.3.2
Diffstat (limited to 'doc/en/example')
-rw-r--r--doc/en/example/parametrize.rst8
-rw-r--r--doc/en/example/reportingdemo.rst4
-rw-r--r--doc/en/example/simple.rst4
3 files changed, 8 insertions, 8 deletions
diff --git a/doc/en/example/parametrize.rst b/doc/en/example/parametrize.rst
index 7230f2b00..15593b28a 100644
--- a/doc/en/example/parametrize.rst
+++ b/doc/en/example/parametrize.rst
@@ -475,10 +475,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
- ssssssssssssssssssssssss... [100%]
+ 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.6' 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
@@ -604,13 +604,13 @@ Then run ``pytest`` with verbose mode and with only the ``basic`` marker:
platform linux -- Python 3.x.y, pytest-5.x.y, py-1.x.y, pluggy-0.x.y -- $PYTHON_PREFIX/bin/python
cachedir: $PYTHON_PREFIX/.pytest_cache
rootdir: $REGENDOC_TMPDIR
- collecting ... collected 18 items / 15 deselected / 3 selected
+ collecting ... collected 17 items / 14 deselected / 3 selected
test_pytest_param_example.py::test_eval[1+7-8] PASSED [ 33%]
test_pytest_param_example.py::test_eval[basic_2+4] PASSED [ 66%]
test_pytest_param_example.py::test_eval[basic_6*9] XFAIL [100%]
- =============== 2 passed, 15 deselected, 1 xfailed in 0.12s ================
+ =============== 2 passed, 14 deselected, 1 xfailed in 0.12s ================
As the result:
diff --git a/doc/en/example/reportingdemo.rst b/doc/en/example/reportingdemo.rst
index eb978c5ea..1c06782f6 100644
--- a/doc/en/example/reportingdemo.rst
+++ b/doc/en/example/reportingdemo.rst
@@ -436,7 +436,7 @@ Here is a nice run of several failures and how ``pytest`` presents things:
items = [1, 2, 3]
print("items is {!r}".format(items))
> a, b = items.pop()
- E TypeError: cannot unpack non-iterable int object
+ E TypeError: 'int' object is not iterable
failure_demo.py:181: TypeError
--------------------------- Captured stdout call ---------------------------
@@ -516,7 +516,7 @@ Here is a nice run of several failures and how ``pytest`` presents things:
def test_z2_type_error(self):
items = 3
> a, b = items
- E TypeError: cannot unpack non-iterable int object
+ E TypeError: 'int' object is not iterable
failure_demo.py:222: TypeError
______________________ TestMoreErrors.test_startswith ______________________
diff --git a/doc/en/example/simple.rst b/doc/en/example/simple.rst
index c1e13e3b1..05ccbc9b2 100644
--- a/doc/en/example/simple.rst
+++ b/doc/en/example/simple.rst
@@ -442,8 +442,8 @@ Now we can profile which test functions execute the slowest:
========================= slowest 3 test durations =========================
0.30s call test_some_are_slow.py::test_funcslow2
- 0.21s call test_some_are_slow.py::test_funcslow1
- 0.11s call test_some_are_slow.py::test_funcfast
+ 0.20s call test_some_are_slow.py::test_funcslow1
+ 0.10s call test_some_are_slow.py::test_funcfast
============================ 3 passed in 0.12s =============================
incremental testing - test steps