]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
qa/vstart_runner: print "success" explicitly 43879/head
authorRishabh Dave <ridave@redhat.com>
Thu, 21 Oct 2021 05:09:39 +0000 (10:39 +0530)
committerRishabh Dave <ridave@redhat.com>
Mon, 18 Apr 2022 05:09:08 +0000 (10:39 +0530)
This makes it effortless for new vstart_runner.py users to spot that the
test passed.

Signed-off-by: Rishabh Dave <ridave@redhat.com>
qa/tasks/vstart_runner.py

index 234ad1985dfb0e159695981ddf52893a29c60ad7..22106ed2dd3a0269f4f0b52f93d1916ae6099fe2 100644 (file)
@@ -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('')