use nextcloud setup and tests

This commit is contained in:
Daniel 2023-12-04 21:48:34 +01:00
parent a4391ad985
commit e94be119d5

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")]