e2e_tests/abratest/runner_dict.py
2023-12-05 19:18:17 +01:00

16 lines
551 B
Python

from typing import TYPE_CHECKING
from authentik.tests_authentik.runner_authentik import RunnerAuthentik
from nextcloud.tests_nextcloud.runner_nextcloud import RunnerNextcloud
from wordpress.tests_wordpress.runner_wordpress import RunnerWordpress
if TYPE_CHECKING:
from abratest.runner import Runner
# Register all runners here. Each .env file with TYPE=authentik will be run with RunnerAuthentik
RUNNER_DICT: dict[str, type["Runner"]] = {
"authentik": RunnerAuthentik,
"wordpress": RunnerWordpress,
"nextcloud": RunnerNextcloud,
}