summaryrefslogtreecommitdiffstats
path: root/dovetail
diff options
context:
space:
mode:
authorxudan <xudan16@huawei.com>2018-04-17 04:05:29 -0400
committerxudan <xudan16@huawei.com>2018-04-17 22:23:28 -0400
commit13877a00e5155ee93bb4255a81e104c1ebf1f11e (patch)
treefcdfb61898594e0681765e10ae4073dc82bb9640 /dovetail
parent749946dcc5b17cfca43c6e8692359f4972e48b21 (diff)
Switch to OPNFV Fraser release
1. Use Functest Fraser docker images whose tag is fraser 2. Use Yardstick stable docker images 3. Functest fraser has moved testcases.yaml file from functest/ci to xtesting/ci 4. Functest fraser has removed 'functest env prepare' command 5. Functest uses rally to execute osinterop test cases instead of refstack_client Change-Id: I81ebefe6ea959ca77c2c87f1d75ef56ac18c165f Signed-off-by: xudan <xudan16@huawei.com>
Diffstat (limited to 'dovetail')
-rw-r--r--dovetail/report.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/dovetail/report.py b/dovetail/report.py
index dea9e426..5e0458bd 100644
--- a/dovetail/report.py
+++ b/dovetail/report.py
@@ -273,10 +273,10 @@ class FunctestCrawler(object):
duration = dt_utils.get_duration(timestart, timestop,
self.logger)
if complex_testcase:
- tests = data['details']['tests']
- failed_num = data['details']['failures']
+ tests = data['details']['tests_number']
+ failed_num = data['details']['failures_number']
success_case = data['details']['success']
- error_case = data['details']['errors']
+ error_case = data['details']['failures']
skipped_case = data['details']['skipped']
details = {"tests": tests,
"failures": failed_num,