15 lines
371 B
Python
15 lines
371 B
Python
from pytest_abra import Runner, Test
|
|
|
|
|
|
def condition_always_true(env_config: dict[str, str]) -> bool:
|
|
return True
|
|
|
|
|
|
def condition_always_false(env_config: dict[str, str]) -> bool:
|
|
return False
|
|
|
|
|
|
class RunnerAuthentik(Runner):
|
|
env_type = "authentik"
|
|
setups = [Test(test_file="setup_authentik.py")]
|
|
# tests = [Test(test_file="test_authentik_dummy.py")]
|