From 876230db5ae1ec15c63291ebc9661f68db589162 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Sun, 4 Mar 2018 11:56:30 +0100 Subject: Return all status when running tiers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I31a062304d47c055c14e5afe8f560c3048b071f4 Signed-off-by: Cédric Ollivier --- xtesting/ci/run_tests.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'xtesting') diff --git a/xtesting/ci/run_tests.py b/xtesting/ci/run_tests.py index 65e45db1..ff100334 100644 --- a/xtesting/ci/run_tests.py +++ b/xtesting/ci/run_tests.py @@ -192,8 +192,7 @@ class Runner(object): test_case = self.executed_test_cases[test.get_name()] if test_case.is_successful() != testcase.TestCase.EX_OK: LOGGER.error("The test case '%s' failed.", test.get_name()) - if test.get_project() == "xtesting": - self.overall_result = Result.EX_ERROR + self.overall_result = Result.EX_ERROR if test.is_blocking(): raise BlockingTestFailed( "The test case {} failed and is blocking".format( -- cgit 1.2.3-korg