fix paths

This commit is contained in:
Daniel Brummerloh 2023-12-13 17:00:34 +01:00
parent d9b65c6a6f
commit 78fafc1e5c

View file

@ -14,7 +14,7 @@ load_json_to_environ(cred_file)
# triggers the execution of one test Runner and provides configuration to the # triggers the execution of one test Runner and provides configuration to the
# tests inside the runner. # tests inside the runner.
ENV_FILES_ROOT = Path("../envfiles").resolve() ENV_FILES_ROOT = Path("./envfiles").resolve()
ENV_FILES = [ ENV_FILES = [
ENV_FILES_ROOT / "login.test.dev.local-it.cloud.env", # authentik 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 / "blog.test.dev.local-it.cloud.env", # wordpress
@ -24,7 +24,7 @@ ENV_PATHS = ";".join([x.as_posix() for x in ENV_FILES])
# ----------------------------------- dirs ----------------------------------- # # ----------------------------------- dirs ----------------------------------- #
RECIPES_DIR = Path("../recipes").resolve() RECIPES_DIR = Path("./recipes").resolve()
OUTPUT_DIR = Path("./test-output").resolve() OUTPUT_DIR = Path("./test-output").resolve()
# ------------------------------------ run ----------------------------------- # # ------------------------------------ run ----------------------------------- #