diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-08-07 05:06:23 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-08-07 05:45:12 +0200 |
commit | 0e7ac62b724393529172ab276c89b97e2c8539aa (patch) | |
tree | e7b93cb797c85a050bffda5ff4689ff1809a2784 /xtesting/ci/run_tests.py | |
parent | 9bc7599c56b2940aa712efdbac20c489659571f9 (diff) |
Allow calling a skip test
run_tests shouldn't return an incorrect value if the test is skipped.
Else it simply forbids running tests in parallel (one test per
thread).
Change-Id: I07efca28dbf6cf1c29ec8e5c999e38cfe3ad0aad
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 0b69c9ee6ca5188045a5927b41fa2666555631d9)
Diffstat (limited to 'xtesting/ci/run_tests.py')
-rw-r--r-- | xtesting/ci/run_tests.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/xtesting/ci/run_tests.py b/xtesting/ci/run_tests.py index 26fad9b8..27f9d946 100644 --- a/xtesting/ci/run_tests.py +++ b/xtesting/ci/run_tests.py @@ -49,11 +49,6 @@ class BlockingTestFailed(Exception): pass -class TestNotEnabled(Exception): - """Exception when the test is not enabled""" - pass - - class RunTestsParser(object): """Parser to run tests""" # pylint: disable=too-few-public-methods @@ -144,8 +139,13 @@ class Runner(object): def run_test(self, test): """Run one test case""" if not test.is_enabled(): - raise TestNotEnabled( - "The test case {} is not enabled".format(test.get_name())) + msg = prettytable.PrettyTable( + header_style='upper', padding_width=5, + field_names=['test case', 'project', 'duration', + 'result']) + msg.add_row([test.get_name(), test.get_project(), "00:00", "SKIP"]) + LOGGER.info("Test result:\n\n%s\n", msg) + return testcase.TestCase.EX_TESTCASE_SKIPPED result = testcase.TestCase.EX_RUN_ERROR run_dict = self.get_run_dict(test.get_name()) if run_dict: |