From 902420cbd4a81a7bd561dc1d894ccdf934707b80 Mon Sep 17 00:00:00 2001 From: Rishabh Dave Date: Thu, 21 Oct 2021 10:39:39 +0530 Subject: [PATCH] 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 --- qa/tasks/vstart_runner.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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('') -- 2.39.5