turn dependencies into strings

This commit is contained in:
Daniel 2023-12-05 16:50:17 +01:00
parent 97fb896c43
commit 24dae132a1
4 changed files with 4 additions and 6 deletions

View file

@ -1,5 +1,4 @@
from src.runner import Runner, Test
from src.tests_authentik.runner_authentik import RunnerAuthentik
def condition_always_true(dotenv_config: dict[str, str]) -> bool:
@ -20,7 +19,7 @@ def condition_has_locale(dotenv_config: dict[str, str]) -> bool:
class RunnerWordpress(Runner):
name = "wordpress"
test_dir_name = "tests_wordpress"
dependencies: list[type[Runner]] = [RunnerAuthentik]
dependencies = ["authentik"]
setups = [Test(test_file="setup_wordpress.py")]
tests = [
Test(test_file="test_wordpress.py"),