fix env file path

This commit is contained in:
Daniel 2023-12-06 21:55:21 +01:00
parent a23a9810dd
commit e1dc085252

View file

@ -20,10 +20,11 @@ from pytest_abra.utils import get_session_id
# At the moment, functionailty is only guaranteed if each env file use
# a unique TYPE var.
ENV_FILES_ROOT = Path("../envfiles").resolve()
ENV_FILES = [
Path("envfiles/login.test.dev.local-it.cloud.env"), # authentik
Path("envfiles/blog.test.dev.local-it.cloud.env"), # wordpress
# Path("envfiles/files.test.dev.local-it.cloud.env"), # nextcloud
ENV_FILES_ROOT / "login.test.dev.local-it.cloud.env", # authentik
ENV_FILES_ROOT / "blog.test.dev.local-it.cloud.env", # wordpress
ENV_FILES_ROOT / "files.test.dev.local-it.cloud.env", # nextcloud
]
@ -31,7 +32,7 @@ ENV_FILES = [
OUTPUT_DIR = Path("./test-output").resolve()
RECIPES_DIR = Path("./recipes").resolve()
RECIPES_DIR = Path("../recipes").resolve()
# --------------------- load credentials to env variables -------------------- #