diff options
Diffstat (limited to 'test/functest')
-rw-r--r-- | test/functest/config.yaml | 2 | ||||
-rw-r--r-- | test/functest/run_tests.py | 12 |
2 files changed, 1 insertions, 13 deletions
diff --git a/test/functest/config.yaml b/test/functest/config.yaml index d1cd45c..d075c77 100644 --- a/test/functest/config.yaml +++ b/test/functest/config.yaml @@ -76,7 +76,7 @@ testcases: testname_db: functest_testcase_3 testcase_4: - enabled: false + enabled: true description: VPN provides connectivity between subnets using router association success_criteria: 75 # we let fail 25% of the subtests testname_db: functest_testcase_4 diff --git a/test/functest/run_tests.py b/test/functest/run_tests.py index cb46f00..e05cd7f 100644 --- a/test/functest/run_tests.py +++ b/test/functest/run_tests.py @@ -47,9 +47,7 @@ def main(): config_yaml = yaml.safe_load(f) testcases = config_yaml.get("testcases") - overall_details = {} overall_status = "PASS" - overall_start_time = time.time() for testcase in testcases: if testcases[testcase]['enabled']: test_name = testcase @@ -63,11 +61,9 @@ def main(): start_time = time.time() result = t.main() end_time = time.time() - duration = end_time - start_time if result < 0: status = "FAIL" overall_status = "FAIL" - overall_details.update({test_name_db: "execution error."}) else: status = result.get("status") details = result.get("details") @@ -77,18 +73,10 @@ def main(): if status == "FAIL": overall_status = "FAIL" - dic = {"duration": duration, "status": status} - overall_details.update({test_name_db: dic}) if args.report: push_results( test_name_db, start_time, end_time, status, details) - overall_end_time = time.time() - if args.report: - push_results( - "bgpvpn", overall_start_time, overall_end_time, - overall_status, overall_details) - if overall_status == "FAIL": sys.exit(-1) |