add runner for authentik
This commit is contained in:
parent
3cb78cb2a5
commit
65aa461d5a
1 changed files with 16 additions and 0 deletions
16
src/tests_authentik/runner_authentik.py
Normal file
16
src/tests_authentik/runner_authentik.py
Normal 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"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue