From 78fafc1e5ccadb071cd99b47009400c76c2845b1 Mon Sep 17 00:00:00 2001 From: Daniel Brummerloh Date: Wed, 13 Dec 2023 17:00:34 +0100 Subject: [PATCH] fix paths --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 9a37f57..f03903c 100644 --- a/main.py +++ b/main.py @@ -14,7 +14,7 @@ load_json_to_environ(cred_file) # triggers the execution of one test Runner and provides configuration to the # tests inside the runner. -ENV_FILES_ROOT = Path("../envfiles").resolve() +ENV_FILES_ROOT = Path("./envfiles").resolve() ENV_FILES = [ ENV_FILES_ROOT / "login.test.dev.local-it.cloud.env", # authentik 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 ----------------------------------- # -RECIPES_DIR = Path("../recipes").resolve() +RECIPES_DIR = Path("./recipes").resolve() OUTPUT_DIR = Path("./test-output").resolve() # ------------------------------------ run ----------------------------------- #