diff options
Diffstat (limited to 'xtesting/ci/run_tests.py')
-rw-r--r-- | xtesting/ci/run_tests.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/xtesting/ci/run_tests.py b/xtesting/ci/run_tests.py index 94bf2787..5e2b49e5 100644 --- a/xtesting/ci/run_tests.py +++ b/xtesting/ci/run_tests.py @@ -46,10 +46,9 @@ class Result(enum.Enum): class BlockingTestFailed(Exception): """Exception when the blocking test fails""" - pass -class RunTestsParser(object): +class RunTestsParser(): """Parser to run tests""" # pylint: disable=too-few-public-methods @@ -78,7 +77,7 @@ class RunTestsParser(object): return vars(self.parser.parse_args(argv)) -class Runner(object): +class Runner(): """Runner class""" def __init__(self): |