From 9da97c90f81f3dc9ff71d17bc52e747ed3757756 Mon Sep 17 00:00:00 2001 From: Genaro Camele Date: Mon, 13 Oct 2025 21:13:55 -0300 Subject: [PATCH] Add clarification on `-s` flag usage right after the -q tip --- docs/community/contributing.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/community/contributing.md b/docs/community/contributing.md index 15b840877..5be0072db 100644 --- a/docs/community/contributing.md +++ b/docs/community/contributing.md @@ -104,6 +104,12 @@ Run using a more concise output style. ./runtests.py -q + +If you do not want the output to be captured (for example, to see print statements directly), you can use the `-s` flag. + + ./runtests.py -s + + Run the tests for a given test case. ./runtests.py MyTestCase @@ -116,9 +122,6 @@ Shorter form to run the tests for a given test method. ./runtests.py test_this_method -**Note:** If you do not want the output to be captured (for example, to see print statements directly), you can use the `-s` flag: - - ./runtests.py -s Note: The test case and test method matching is fuzzy and will sometimes run other tests that contain a partial string match to the given command line input.