From: Cédric Ollivier Date: Sat, 3 Mar 2018 10:55:44 +0000 (+0100) Subject: Stop filtering the project when calculating results X-Git-Tag: 0.21 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F35%2F53035%2F1;p=functest-xtesting.git Stop filtering the project when calculating results Change-Id: Ia0917426775831176206f4bb300d513cc3190e08 Signed-off-by: Cédric Ollivier --- 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()