summaryrefslogtreecommitdiffstats
path: root/dovetail/report.py
diff options
context:
space:
mode:
authorxudan <xudan16@huawei.com>2019-11-20 03:29:44 -0500
committerxudan <xudan16@huawei.com>2019-11-20 23:13:53 -0500
commit698806a69c0aa8246b43efe2eb1bb61ba56165c6 (patch)
tree058d9b7c5fc25d76983175c545750764268e71fc /dovetail/report.py
parent88dee82da16683c7796036ae6e20a2d7c1f6b162 (diff)
Update the result check for rally tests
JIRA: DOVETAIL-790 Change-Id: Ia3bacf307cd2543820eae86733f76a472e34ead2 Signed-off-by: xudan <xudan16@huawei.com>
Diffstat (limited to 'dovetail/report.py')
-rw-r--r--dovetail/report.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dovetail/report.py b/dovetail/report.py
index 9523d388..ed3f942b 100644
--- a/dovetail/report.py
+++ b/dovetail/report.py
@@ -336,7 +336,7 @@ class FunctestCrawler(Crawler):
def get_rally_details(self, data):
try:
- t_details = data['details'][0]['details']
+ t_details = data['details']['modules'][0]['details']
tests = len(t_details['success']) + len(t_details['failures'])
details = {
'tests': tests,