From 682847ea50893fa9ab4fae6f72766888009c13f6 Mon Sep 17 00:00:00 2001 From: Aaron Ang Date: Sun, 8 Apr 2018 00:55:11 -0700 Subject: [PATCH 1/2] bpo-31201: Clarify command to re-run failing test(s) with example --- README.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 7ab7d019b2c8b4..335205ca4a87ff 100644 --- a/README.rst +++ b/README.rst @@ -172,9 +172,10 @@ something is wrong. By default, tests are prevented from overusing resources like disk space and memory. To enable these tests, run ``make testall``. -If any tests fail, you can re-run the failing test(s) in verbose mode:: +If any tests fail, you can re-run the failing test(s) in verbose mode. For +example, if ``test_os`` and ``test_gdb`` failed, you can run:: - make test TESTOPTS="-v test_that_failed" + make test TESTOPTS="-v test_os test_gdb" If the failure persists and appears to be a problem with Python rather than your environment, you can `file a bug report `_ and From bcbe3e6c44819f618f01588accac91c1b769ab9d Mon Sep 17 00:00:00 2001 From: Aaron Ang Date: Sun, 8 Apr 2018 19:12:11 -0700 Subject: [PATCH 2/2] Remove redundant space --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 335205ca4a87ff..05daca298ae74a 100644 --- a/README.rst +++ b/README.rst @@ -175,7 +175,7 @@ memory. To enable these tests, run ``make testall``. If any tests fail, you can re-run the failing test(s) in verbose mode. For example, if ``test_os`` and ``test_gdb`` failed, you can run:: - make test TESTOPTS="-v test_os test_gdb" + make test TESTOPTS="-v test_os test_gdb" If the failure persists and appears to be a problem with Python rather than your environment, you can `file a bug report `_ and