diff options
author | Juha Kosonen <juha.kosonen@nokia.com> | 2016-02-03 15:53:49 +0000 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-02-04 10:04:49 +0000 |
commit | 104413927ecd6985419fe434b0bd9613e0764ee0 (patch) | |
tree | 5b552c4e766f8786cf36ab27409795505cca89b6 /testcases/VIM/OpenStack | |
parent | d7e307e628ab59298230e919c76c2fb121b5c050 (diff) |
Fix success status parsing of rally results
Change-Id: I6053bce6cc919af7ac34a16843b2583e45f01ac2
Signed-off-by: Juha Kosonen <juha.kosonen@nokia.com>
(cherry picked from commit 5cf9b7fe8f380f6315e656527b90778c2d91a95c)
Diffstat (limited to 'testcases/VIM/OpenStack')
-rwxr-xr-x | testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py b/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py index 71bf743fb..265978503 100755 --- a/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py +++ b/testcases/VIM/OpenStack/CI/libraries/run_rally-cert.py @@ -161,16 +161,14 @@ def task_succeed(json_raw): :return: Bool """ rally_report = json.loads(json_raw) - rally_report = rally_report[0] - if rally_report is None: - return False - if rally_report.get('result') is None: - return False - - for result in rally_report.get('result'): - if len(result.get('error')) > 0: + for report in rally_report: + if report is None or report.get('result') is None: return False + for result in report.get('result'): + if result is None or len(result.get('error')) > 0: + return False + return True |