diff options
author | Juha Kosonen <juha.kosonen@nokia.com> | 2016-01-29 10:26:06 +0000 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-01-29 11:12:21 +0000 |
commit | 175fbd244916dd77c0935f63322c03f449efbef7 (patch) | |
tree | b6aec74db4071e466754433040a35557dd6cdef2 /testcases/VIM/OpenStack | |
parent | 320f9f42da31e25a41e9b7fad467394a1179a06c (diff) |
Change scenario start/result messages in run_rally-cert.py
Change-Id: I2f5d4f327ab88b6855569d920a275ec801eb0311
Signed-off-by: Juha Kosonen <juha.kosonen@nokia.com>
(cherry picked from commit 358ea20ea921db3d2f4ed0d0d22c92a2b534ce3a)
Diffstat (limited to 'testcases/VIM/OpenStack')
-rwxr-xr-x | testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py b/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py index d77cd4083..efdde6718 100755 --- a/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py +++ b/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py @@ -199,7 +199,7 @@ def run_task(test_name): # :return: void # - logger.info('starting {} test ...'.format(test_name)) + logger.info('Starting test scenario "{}" ...'.format(test_name)) task_file = '{}task.yaml'.format(SCENARIOS_DIR) if not os.path.exists(task_file): @@ -277,9 +277,9 @@ def run_task(test_name): """ parse JSON operation result """ if task_succeed(json_results): - logger.info('{} test OK.'.format(test_name) + "\n") + logger.info('Test scenario: "{}" OK.'.format(test_name) + "\n") else: - logger.info('{} test Failed.'.format(test_name) + "\n") + logger.info('Test scenario: "{}" Failed.'.format(test_name) + "\n") def main(): |