rename src to abratest

This commit is contained in:
Daniel 2023-12-05 19:18:17 +01:00
parent d2f50fb791
commit 01c294d44b
26 changed files with 43 additions and 43 deletions

View file

@ -1,16 +0,0 @@
from typing import TYPE_CHECKING
from tests_authentik.runner_authentik import RunnerAuthentik
from tests_nextcloud.runner_nextcloud import RunnerNextcloud
from tests_wordpress.runner_wordpress import RunnerWordpress
if TYPE_CHECKING:
from src.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,
}