diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-06-16 15:19:56 +0200 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-06-16 15:19:56 +0200 |
commit | 5f93c5912753eb2d80077a77076015533dc16f6e (patch) | |
tree | 8f0c0520d1dd7e806f5a97db8c146bd7519fdc82 /testcases/OpenStack/rally | |
parent | 6ecc6f14a3325895233f40e5193cb369c6aab914 (diff) |
Align test names in DB and config file
JIRA: FUNCTEST-304
Change-Id: I98d3155beb1c5e49eda84b443df603c2630b4823
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'testcases/OpenStack/rally')
-rwxr-xr-x | testcases/OpenStack/rally/run_rally-cert.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/testcases/OpenStack/rally/run_rally-cert.py b/testcases/OpenStack/rally/run_rally-cert.py index 7822c7e9..8afbccaa 100755 --- a/testcases/OpenStack/rally/run_rally-cert.py +++ b/testcases/OpenStack/rally/run_rally-cert.py @@ -535,11 +535,16 @@ def main(): if total_success >= 90: status = "passed" + if args.sanity: + case_name = "rally_sanity" + else: + case_name = "rally_full" + if args.report: logger.debug("Pushing Rally summary into DB...") functest_utils.push_results_to_db("functest", - "Rally", - logger, + case_name, + None, start_time, stop_time, status, |