rename testing dir to recipes

This commit is contained in:
Daniel 2023-12-05 19:02:24 +01:00
parent 659093f6aa
commit 3841658e4e
22 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,17 @@
from src.runner import Runner, Test
def condition_always_false(dotenv_config: dict[str, str]) -> bool:
return False
class RunnerNextcloud(Runner):
name: str = "nextcloud"
test_dir_name: str = "tests_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")]