new-features #5

Merged
dan merged 73 commits from wordpress-nextcloud into dev 2023-12-04 12:46:32 +01:00
Showing only changes of commit 8652031c46 - Show all commits

View file

@ -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)