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:36:44 +0200 |
commit | 0b69c9ee6ca5188045a5927b41fa2666555631d9 (patch) | |
tree | 2cf85f3684156d52c57ced195066c18172b14497 /xtesting/ci/tier_handler.py | |
parent | 12217df35b64528f786d3548ca2353907b2b6ebb (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>
Diffstat (limited to 'xtesting/ci/tier_handler.py')
-rw-r--r-- | xtesting/ci/tier_handler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xtesting/ci/tier_handler.py b/xtesting/ci/tier_handler.py index 7a77e4cf..11a0858e 100644 --- a/xtesting/ci/tier_handler.py +++ b/xtesting/ci/tier_handler.py @@ -65,13 +65,13 @@ class Tier(object): def get_test(self, test_name): if self.is_test(test_name): - for test in self.tests_array: + for test in self.tests_array + self.skipped_tests_array: if test.get_name() == test_name: return test return None def is_test(self, test_name): - for test in self.tests_array: + for test in self.tests_array + self.skipped_tests_array: if test.get_name() == test_name: return True return False |