diff options
Diffstat (limited to 'xtesting')
-rw-r--r-- | xtesting/ci/run_tests.py | 5 |
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() |