From 059935120af6f46f6397de0a1a5c7b9484cb6f31 Mon Sep 17 00:00:00 2001 From: Vasek Sraier Date: Fri, 12 Mar 2021 15:31:29 +0100 Subject: [PATCH] integration test tool: improved help message --- manager/integration/runner.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/manager/integration/runner.py b/manager/integration/runner.py index 314b16289..bdd2a68f0 100644 --- a/manager/integration/runner.py +++ b/manager/integration/runner.py @@ -276,6 +276,10 @@ class TestRunner: @click.argument('tests', nargs=-1) @click.option("-w", "--wait", help="Do not stop the test container immediately, wait for confirmation.", default=False, is_flag=True) def run(tests: List[str] = [], wait: bool = False): + """Run TESTS + + If no TESTS are specified, runs them all. + """ with PodmanService() as manager: for test_path in TestRunner._list_tests(): test_name = test_path.absolute().name -- 2.47.3