diff options
author | Jose Lausuch <jose.lausuch@ericsson.com> | 2016-11-24 09:56:43 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-11-24 09:56:43 +0000 |
commit | 7e3add016167951eb47e0bfa04539de3fe969ce9 (patch) | |
tree | a2dc011126bcd9e68b353432c3cfd39b1575f149 /functest/ci | |
parent | 198a9fd697dcb0a971305d845d32afd797a71ede (diff) | |
parent | 6183a7545797733309e42fcc3e8138ce8901c357 (diff) |
Merge "bugfix: correct test report status"
Diffstat (limited to 'functest/ci')
-rw-r--r-- | functest/ci/run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/ci/run_tests.py b/functest/ci/run_tests.py index e8be4290..015b5840 100644 --- a/functest/ci/run_tests.py +++ b/functest/ci/run_tests.py @@ -124,7 +124,7 @@ def run_test(test, tier_name): test_case = cls() result = test_case.run() if result != TestCasesBase.TestCasesBase.EX_SKIP and REPORT_FLAG: - result = test_case.push_to_db() + test_case.push_to_db() except ImportError: logger.exception("Cannot import module {}".format( run_dict['module'])) |