16 lines
410 B
Python
16 lines
410 B
Python
from src.runner import Runner, Test
|
|
|
|
|
|
def condition_always_true(dotenv_config: dict[str, str]) -> bool:
|
|
return True
|
|
|
|
|
|
def condition_always_false(dotenv_config: dict[str, str]) -> bool:
|
|
return False
|
|
|
|
|
|
class RunnerAuthentik(Runner):
|
|
name = "authentik"
|
|
test_dir_name = "tests_authentik"
|
|
setups = [Test(test_file="setup_authentik.py")]
|
|
# tests = [Test(test_file="test_authentik_dummy.py")]
|