add RunnerNextcloud

This commit is contained in:
Daniel 2023-11-30 11:58:23 +01:00
parent 1b3396baf4
commit d29e8102e9

View file

@ -8,6 +8,7 @@ from src.dirmanager import DirManager
from src.html_helper import merge_html_files
from src.runner import Runner
from src.tests_authentik.runner_authentik import RunnerAuthentik
from src.tests_nextcloud.runner_nextcloud import RunnerNextcloud
from src.tests_wordpress.runner_wordpress import RunnerWordpress
from src.utils import rmtree
@ -15,6 +16,7 @@ from src.utils import rmtree
RUNNER_DICT: dict[str, type[Runner]] = {
"authentik": RunnerAuthentik,
"wordpress": RunnerWordpress,
"nextcloud": RunnerNextcloud,
}