refactoring #13

Merged
dan merged 32 commits from refactoring into dev 2023-12-08 18:17:35 +01:00
Showing only changes of commit 8aacea68a0 - Show all commits

View file

@ -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"),
]