summaryrefslogtreecommitdiffstats
path: root/dovetail/report.py
diff options
context:
space:
mode:
authorLeo wang <grakiss.wanglei@huawei.com>2017-09-29 04:07:45 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-29 04:07:45 +0000
commit98e068ebee68513afc2b25acaa0c9112f447b80b (patch)
treee7e993e833b95f9cb2c02ed227fbce02fc3256ee /dovetail/report.py
parentf0633486049e9e2d09001fd5c2a599a722f76d03 (diff)
parenteac5857502dfad79c9eaa735b88bd07f60fd537c (diff)
Merge "Bugfix: sdnvpn test cases failed due to wrong module name"
Diffstat (limited to 'dovetail/report.py')
-rw-r--r--dovetail/report.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/dovetail/report.py b/dovetail/report.py
index 28ac544f..41f14b53 100644
--- a/dovetail/report.py
+++ b/dovetail/report.py
@@ -263,7 +263,8 @@ class FunctestCrawler(object):
for jsonfile in f:
try:
data = json.loads(jsonfile)
- if testcase_name == data['case_name'] and \
+ if (testcase_name == data['case_name'] or
+ data['project_name'] == "sdnvpn") and \
build_tag == data['build_tag']:
criteria = data['criteria']
timestart = data['start_date']