[WIP] Add new automated test framework (#1)
Co-authored-by: Daniel <d.brummerloh@gmail.com> Co-committed-by: Daniel <d.brummerloh@gmail.com>
This commit is contained in:
parent
859bd57006
commit
97ed87c79f
31 changed files with 769 additions and 6 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_dummy.py"
|
||||
Loading…
Add table
Add a link
Reference in a new issue