diff --git a/src/runner.py b/src/runner.py index 31b9e22..8c4cac1 100644 --- a/src/runner.py +++ b/src/runner.py @@ -36,7 +36,7 @@ class Runner: assert self.test_dir_name self.root_dir = Path(__file__).parent - def run_setup(self): + def run_setups(self): """runs the setup scripts if available""" self._execute_test_list(self.setups) @@ -44,7 +44,7 @@ class Runner: """runs the test scripts if available""" self._execute_test_list(self.tests) - def run_cleanup(self): + def run_cleanups(self): """runs the cleanup scripts if available""" self._execute_test_list(self.cleanups)