diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-03-04 11:56:30 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-03-04 11:56:30 +0100 |
commit | 876230db5ae1ec15c63291ebc9661f68db589162 (patch) | |
tree | c3c16d6b9f6609cbb7c950c44a7464c2531a4622 /xtesting/ci | |
parent | c36804be45de5110836e325d3c2c15086e5451ed (diff) |
Return all status when running tiers0.22
Change-Id: I31a062304d47c055c14e5afe8f560c3048b071f4
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'xtesting/ci')
-rw-r--r-- | xtesting/ci/run_tests.py | 3 |
1 files changed, 1 insertions, 2 deletions
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( |