remove unused condition functions

This commit is contained in:
Daniel 2023-12-07 23:13:05 +01:00
parent f857a0685f
commit a69b5e2da7

View file

@ -1,14 +1,6 @@
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")]