summaryrefslogtreecommitdiff
path: root/doc/en/getting-started.rst
diff options
context:
space:
mode:
authorKatrin Leinweber <9948149+katrinleinweber@users.noreply.github.com>2020-05-18 19:51:22 +0200
committerGitHub <noreply@github.com>2020-05-18 20:51:22 +0300
commit9bf28853bfb7486ca012e005be47546402cf7e7f (patch)
tree8cc2ecfe81bb388cfebaba43625766d9a1cb7bb5 /doc/en/getting-started.rst
parent8b9b81c3c04399d0ebde8d85a9db60291b325acd (diff)
downloadpytest-9bf28853bfb7486ca012e005be47546402cf7e7f.tar.gz
doc: highlight difference between progress percentage & code coverage (#6686)
Diffstat (limited to 'doc/en/getting-started.rst')
-rw-r--r--doc/en/getting-started.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/en/getting-started.rst b/doc/en/getting-started.rst
index 06279a87a..2549e8ff6 100644
--- a/doc/en/getting-started.rst
+++ b/doc/en/getting-started.rst
@@ -73,7 +73,7 @@ That’s it. You can now execute the test function:
FAILED test_sample.py::test_answer - assert 4 == 5
============================ 1 failed in 0.12s =============================
-This test returns a failure report because ``func(3)`` does not return ``5``.
+The ``[100%]`` refers to the overall progress of running all test cases. After it finishes, pytest then shows a failure report because ``func(3)`` does not return ``5``.
.. note::