move all test files into their own folder, as if this were an authentik recipe repo
This commit is contained in:
parent
3841658e4e
commit
d2f50fb791
22 changed files with 0 additions and 0 deletions
17
recipes/nextcloud/tests_nextcloud/runner_nextcloud.py
Normal file
17
recipes/nextcloud/tests_nextcloud/runner_nextcloud.py
Normal 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")]
|
||||
Loading…
Add table
Add a link
Reference in a new issue