summaryrefslogtreecommitdiffstats
path: root/dovetail/report.py
diff options
context:
space:
mode:
authorxudan <xudan16@huawei.com>2018-10-25 04:03:23 -0400
committerxudan <xudan16@huawei.com>2018-10-31 00:12:34 -0400
commit13a9eb11068987beec3c8d6e058142c07c8a66a6 (patch)
tree3ac35fb1465451e90b4e28ae1853265a11b9d293 /dovetail/report.py
parent7cd5c4c60b3f9a9893c2801a39061489ecfa6ae0 (diff)
CI verify jobs failed due to the update of tox
The LF pod used to run the CI verify jobs have updated the version of tox. So the CI verify jobs failed. See https://build.opnfv.org/ci/view/dovetail/job/dovetail-merge-master/476/console Fix the python format errors Ignore error 'W503 line break before binary operator'. Change-Id: Ic2df070447bbea39c877ce7a394d733a95064bb1 Signed-off-by: xudan <xudan16@huawei.com>
Diffstat (limited to 'dovetail/report.py')
-rw-r--r--dovetail/report.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/dovetail/report.py b/dovetail/report.py
index be8d0827..189fba91 100644
--- a/dovetail/report.py
+++ b/dovetail/report.py
@@ -265,8 +265,7 @@ class FunctestCrawler(Crawler):
for jsonfile in f:
try:
data = json.loads(jsonfile)
- if (testcase_name == data['case_name'] or
- data['project_name'] == "sdnvpn") and \
+ if testcase_name == data['case_name'] and \
build_tag == data['build_tag']:
criteria = data['criteria']
timestart = data['start_date']
@@ -465,8 +464,8 @@ class FunctestChecker(object):
def get_sub_testcase(sub_testcase, result):
if not result:
return False
- sub_testcase = re.sub("\[.*?\]", "", sub_testcase)
- reg = sub_testcase + '[\s+\d+]'
+ sub_testcase = re.sub(r"\[.*?\]", "", sub_testcase)
+ reg = sub_testcase + r'[\s+\d+]'
find_reg = re.compile(reg)
for tc in result:
match = find_reg.findall(tc)