From c36804be45de5110836e325d3c2c15086e5451ed Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Sat, 3 Mar 2018 11:55:44 +0100 Subject: Stop filtering the project when calculating results MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ia0917426775831176206f4bb300d513cc3190e08 Signed-off-by: Cédric Ollivier --- xtesting/ci/run_tests.py | 5 +---- 1 file changed, 1 insertion(+), 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() -- cgit 1.2.3-korg