diff options
-rw-r--r-- | dovetail/conf/functest_config.yml | 5 | ||||
-rw-r--r-- | dovetail/report.py | 13 |
2 files changed, 12 insertions, 6 deletions
diff --git a/dovetail/conf/functest_config.yml b/dovetail/conf/functest_config.yml index 2c702cdb..7182b27d 100644 --- a/dovetail/conf/functest_config.yml +++ b/dovetail/conf/functest_config.yml @@ -4,7 +4,7 @@ functest: docker_tag: latest envs: '-e INSTALLER_TYPE=compass -e INSTALLER_IP=192.168.200.2 -e NODE_NAME=dovetail-pod -e DEPLOY_SCENARIO=ha_nosdn - -e BUILD_TAG=dovetail -e CI_DEBUG=true + -e BUILD_TAG=daily-dovetail-001 -e CI_DEBUG=true -e DEPLOY_TYPE=baremetal -e RESULTS_STORE=file:///home/opnfv/functest/results/functest_result.json' opts: '-id --privileged=true' @@ -12,7 +12,10 @@ functest: - 'echo test for precondition in functest' cmds: - 'functest env prepare' + - '[ -f /home/opnfv/functest/results/functest_result.json ] && cp /home/opnfv/functest/results/functest_result.json /home/opnfv/functest/functest_result.json || true' + - sed -i 's/http:\/\/testresults.opnfv.org\/test\/api\/v1/file:\/\/\/home\/opnfv\/functest\/results\/functest_result.json/g' /home/opnfv/repos/functest/functest/ci/config_functest.yaml - 'functest testcase run {{validate_testcase}} -r' + - 'cp /home/opnfv/functest/functest_result.json /home/opnfv/functest/results/functest_result.json' post_condition: - 'echo test for postcondition in functest' result: diff --git a/dovetail/report.py b/dovetail/report.py index 66618b23..a35ec323 100644 --- a/dovetail/report.py +++ b/dovetail/report.py @@ -233,11 +233,14 @@ class FunctestCrawler(object): return None with open(file_path, 'r') as f: for jsonfile in f: - data = json.loads(jsonfile) - if testcase_name == data['case_name']: - criteria = data['details']['status'] - timestart = data['details']['timestart'] - testcase_duration = data['details']['duration'] + try: + data = json.loads(jsonfile) + if testcase_name == data['case_name']: + criteria = data['details']['status'] + timestart = data['details']['timestart'] + testcase_duration = data['details']['duration'] + except Exception: + continue json_results = {'criteria': criteria, 'details': {"timestart": timestart, |