Stop filtering the project when calculating results 35/53035/1 0.21
authorCédric Ollivier <cedric.ollivier@orange.com>
Sat, 3 Mar 2018 10:55:44 +0000 (11:55 +0100)
committerCédric Ollivier <cedric.ollivier@orange.com>
Sat, 3 Mar 2018 10:55:44 +0000 (11:55 +0100)
Change-Id: Ia0917426775831176206f4bb300d513cc3190e08
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
xtesting/ci/run_tests.py

index 8c32ee1..65e45db 100644 (file)
@@ -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()