remove unused condition functions

This commit is contained in:
Daniel 2023-12-07 23:12:22 +01:00
parent 00bfafebd3
commit f857a0685f

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
def condition_has_locale(env_config: dict[str, str]) -> bool:
if "LOCALE" in env_config:
if "de" in env_config["LOCALE"]: