From 9bf28853bfb7486ca012e005be47546402cf7e7f Mon Sep 17 00:00:00 2001 From: Katrin Leinweber <9948149+katrinleinweber@users.noreply.github.com> Date: Mon, 18 May 2020 19:51:22 +0200 Subject: [PATCH] doc: highlight difference between progress percentage & code coverage (#6686) --- doc/en/getting-started.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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::