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()