aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-03-03 11:55:44 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2018-03-03 11:55:44 +0100
commitc36804be45de5110836e325d3c2c15086e5451ed (patch)
treee671bb74a0d1689e6db9e2bc1a86e1a83a04482b
parent02016cf97c5d4a6d9903565c2c83c2cabfe3e764 (diff)
Stop filtering the project when calculating results0.21
Change-Id: Ia0917426775831176206f4bb300d513cc3190e08 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r--xtesting/ci/run_tests.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/xtesting/ci/run_tests.py b/xtesting/ci/run_tests.py
index 8c32ee12..65e45db1 100644
--- a/xtesting/ci/run_tests.py
+++ b/xtesting/ci/run_tests.py
@@ -165,10 +165,7 @@ class Runner(object):
test_case.run()
if self.report_flag:
test_case.push_to_db()
- if test.get_project() == "xtesting":
- result = test_case.is_successful()
- else:
- result = testcase.TestCase.EX_OK
+ result = test_case.is_successful()
LOGGER.info("Test result:\n\n%s\n", test_case)
if self.clean_flag:
test_case.clean()