diff --git a/recipes/wordpress/tests_wordpress/runner_wordpress.py b/recipes/wordpress/tests_wordpress/runner_wordpress.py index 9072bc5..be7e86a 100644 --- a/recipes/wordpress/tests_wordpress/runner_wordpress.py +++ b/recipes/wordpress/tests_wordpress/runner_wordpress.py @@ -10,8 +10,11 @@ def condition_has_locale(env_config: dict[str, str]) -> bool: class RunnerWordpress(Runner): env_type = "wordpress" dependencies = ["authentik"] - setups = [Test(test_file="setup_wordpress.py")] - tests = [ - Test(test_file="test_wordpress.py"), - Test(condition=condition_has_locale, test_file="test_wordpress_localization.py"), + setups = [ + Test(test_file="setup_wordpress.py"), + Test(test_file="setup_wordpress_trigger_email.py", prevent_skip=True), + ] + tests = [ + # Test(test_file="test_wordpress.py"), + # Test(condition=condition_has_locale, test_file="test_wordpress_localization.py"), ]