From a69b5e2da77ae34176293f12cd362197d72224a4 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 7 Dec 2023 23:13:05 +0100 Subject: [PATCH] remove unused condition functions --- recipes/authentik/tests_authentik/runner_authentik.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/recipes/authentik/tests_authentik/runner_authentik.py b/recipes/authentik/tests_authentik/runner_authentik.py index 10b9820..0570db7 100644 --- a/recipes/authentik/tests_authentik/runner_authentik.py +++ b/recipes/authentik/tests_authentik/runner_authentik.py @@ -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")]