refactor for independent test dirs #7

Merged
dan merged 49 commits from independent-test-dirs into dev 2023-12-05 21:41:46 +01:00
Showing only changes of commit e94be119d5 - Show all commits

View file

@ -10,9 +10,9 @@ class RunnerNextcloud(Runner):
name: str = "nextcloud" name: str = "nextcloud"
test_dir_name: str = "tests_nextcloud" test_dir_name: str = "tests_nextcloud"
dependencies = [RunnerAuthentik] dependencies = [RunnerAuthentik]
setups = [Test(test_file="setup_nextcloud.py")] setups = [Test(test_file="setup_nextcloud.py", prevent_skip=False)]
tests = [ tests = [
Test(test_file="tests_nextcloud.py"), Test(test_file="tests_nextcloud.py", prevent_skip=True),
Test(condition=condition_always_false, test_file="tests_nextcloud_onlyoffice.py"), # Test(condition=condition_always_false, test_file="tests_nextcloud_onlyoffice.py"),
] ]
# cleanups = [Test(test_file="cleanup_nextcloud.py")] # cleanups = [Test(test_file="cleanup_nextcloud.py")]