fix env file path
This commit is contained in:
parent
a23a9810dd
commit
e1dc085252
1 changed files with 5 additions and 4 deletions
9
main.py
9
main.py
|
|
@ -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 -------------------- #
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue