installable package #9
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
|
# At the moment, functionailty is only guaranteed if each env file use
|
||||||
# a unique TYPE var.
|
# a unique TYPE var.
|
||||||
|
|
||||||
|
ENV_FILES_ROOT = Path("../envfiles").resolve()
|
||||||
ENV_FILES = [
|
ENV_FILES = [
|
||||||
Path("envfiles/login.test.dev.local-it.cloud.env"), # authentik
|
ENV_FILES_ROOT / "login.test.dev.local-it.cloud.env", # authentik
|
||||||
Path("envfiles/blog.test.dev.local-it.cloud.env"), # wordpress
|
ENV_FILES_ROOT / "blog.test.dev.local-it.cloud.env", # wordpress
|
||||||
# Path("envfiles/files.test.dev.local-it.cloud.env"), # nextcloud
|
ENV_FILES_ROOT / "files.test.dev.local-it.cloud.env", # nextcloud
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -31,7 +32,7 @@ ENV_FILES = [
|
||||||
|
|
||||||
|
|
||||||
OUTPUT_DIR = Path("./test-output").resolve()
|
OUTPUT_DIR = Path("./test-output").resolve()
|
||||||
RECIPES_DIR = Path("./recipes").resolve()
|
RECIPES_DIR = Path("../recipes").resolve()
|
||||||
|
|
||||||
|
|
||||||
# --------------------- load credentials to env variables -------------------- #
|
# --------------------- load credentials to env variables -------------------- #
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue