From: Rishabh Dave Date: Thu, 21 Oct 2021 05:09:39 +0000 (+0530) Subject: qa/vstart_runner: print "success" explicitly X-Git-Tag: v18.0.0~1047^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=902420cbd4a81a7bd561dc1d894ccdf934707b80;p=ceph.git qa/vstart_runner: print "success" explicitly This makes it effortless for new vstart_runner.py users to spot that the test passed. Signed-off-by: Rishabh Dave --- diff --git a/qa/tasks/vstart_runner.py b/qa/tasks/vstart_runner.py index 234ad1985dfb0..22106ed2dd3a0 100644 --- a/qa/tasks/vstart_runner.py +++ b/qa/tasks/vstart_runner.py @@ -1242,7 +1242,8 @@ def launch_individually(overall_suite): if result.wasSuccessful(): log.info('') log.info('-'*70) - log.info(f'Ran {no_of_tests_execed} tests in {time_elapsed}s') + log.info(f'Ran {no_of_tests_execed} tests successfully in ' + f'{time_elapsed}s') if no_of_tests_failed > 0: log.info(f'{no_of_tests_failed} tests failed') log.info('')