diff --git a/test/maple_test/task.py b/test/maple_test/task.py index cfc913038bfe3f1be2da1ba382fccad0a502e4f3..08fc8221911c719d8ec0c6a21c9ff699436bb2cd 100644 --- a/test/maple_test/task.py +++ b/test/maple_test/task.py @@ -109,7 +109,7 @@ class TestSuiteTask: self.path = complete_path(test_path) self.cfg_path = cfg_path - + config = read_config(self.cfg_path) if config is None: raise TestError( @@ -303,12 +303,7 @@ class TestSuiteTask: def run(self, process_num=1): logger = configs.LOGGER - if platform.system() == "Windows": - logger.info( - "You are running on windows, currently only serial execution is supported" - ) - self.serial_run_task() - elif process_num == 1: + if process_num == 1: logger.debug("The number of running processes is 1, which will run serial") self.serial_run_task() else: