add runner for authentik

This commit is contained in:
Daniel 2023-11-22 12:30:13 +01:00
parent 3cb78cb2a5
commit 65aa461d5a

View file

@ -0,0 +1,16 @@
from pathlib import Path
from runner import Runner, SubTest
def condition_always_true(dotenv_path: Path) -> bool:
return True
def condition_always_false(dotenv_path: Path) -> bool:
return False
class RunnerAuthentik(Runner):
test_dir_name = "tests_authentik"
main_test_name = "test_authentik_setup.py"