summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJose Lausuch <jose.lausuch@ericsson.com>2016-11-24 09:56:43 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-11-24 09:56:43 +0000
commit7e3add016167951eb47e0bfa04539de3fe969ce9 (patch)
treea2dc011126bcd9e68b353432c3cfd39b1575f149
parent198a9fd697dcb0a971305d845d32afd797a71ede (diff)
parent6183a7545797733309e42fcc3e8138ce8901c357 (diff)
Merge "bugfix: correct test report status"
-rw-r--r--functest/ci/run_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/ci/run_tests.py b/functest/ci/run_tests.py
index e8be42902..015b5840d 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']))