Merge pull request #43879 from rishabh-d-dave/vr-clearer-msg

qa/vstart_runner: print "success" explicitly

Reviewed-by: Venky Shankar <vshankar@redhat.com>
This commit is contained in:
Venky Shankar 2022-04-18 15:27:52 +05:30 committed by GitHub
commit 73e806b7da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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