16 lines
529 B
Python
16 lines
529 B
Python
from abratest.runner import Runner, Test
|
|
|
|
|
|
def condition_always_false(dotenv_config: dict[str, str]) -> bool:
|
|
return False
|
|
|
|
|
|
class RunnerNextcloud(Runner):
|
|
name: str = "nextcloud"
|
|
dependencies = ["authentik"]
|
|
setups = [Test(test_file="setup_nextcloud.py", prevent_skip=False)]
|
|
tests = [
|
|
Test(test_file="tests_nextcloud.py", prevent_skip=True),
|
|
# Test(condition=condition_always_false, test_file="tests_nextcloud_onlyoffice.py"),
|
|
]
|
|
# cleanups = [Test(test_file="cleanup_nextcloud.py")]
|