From f857a0685f3240bfa8b8f4bbc97ac0059cec6e2d Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 7 Dec 2023 23:12:22 +0100 Subject: [PATCH] remove unused condition functions --- recipes/wordpress/tests_wordpress/runner_wordpress.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/recipes/wordpress/tests_wordpress/runner_wordpress.py b/recipes/wordpress/tests_wordpress/runner_wordpress.py index 0b5cb12..f79bd51 100644 --- a/recipes/wordpress/tests_wordpress/runner_wordpress.py +++ b/recipes/wordpress/tests_wordpress/runner_wordpress.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 - - def condition_has_locale(env_config: dict[str, str]) -> bool: if "LOCALE" in env_config: if "de" in env_config["LOCALE"]: