From 65aa461d5af7f0f040bc2e5b266600d88c6e1833 Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 22 Nov 2023 12:30:13 +0100 Subject: [PATCH] add runner for authentik --- src/tests_authentik/runner_authentik.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/tests_authentik/runner_authentik.py diff --git a/src/tests_authentik/runner_authentik.py b/src/tests_authentik/runner_authentik.py new file mode 100644 index 0000000..c8ae216 --- /dev/null +++ b/src/tests_authentik/runner_authentik.py @@ -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"