new test framework #1

Merged
dan merged 47 commits from wip-new-framework into dev 2023-11-22 21:40:14 +01:00
Showing only changes of commit 65aa461d5a - Show all commits

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"