From 7679be3126881079702119f1c9d86d03c28d584b Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sun, 22 Jun 2025 13:44:44 +0200 Subject: [PATCH] test_driver.py: fix confusing help output --- tests/test_driver.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/test_driver.py b/tests/test_driver.py index 4688bd231..57d5cfc9f 100755 --- a/tests/test_driver.py +++ b/tests/test_driver.py @@ -121,7 +121,11 @@ async def main(): type=int, help="Maximum number of tests to run concurrently. The default is to run all tests concurrently.", ) - argparser.add_argument("fish", nargs=1, help="Fish to test") + argparser.add_argument( + "fish", + nargs=1, + help="Directory containing fish binaries to test (typically 'target/debug')", + ) argparser.add_argument("file", nargs="*", help="Tests to run") args = argparser.parse_args()