Compare commits

...
3 Commits
Author SHA1 Message Date
brian 77a3219f39 fixed path variable
Code Quality Pipeline / Check Code (pull_request) Failing after 3m21s
2025-03-17 21:13:21 +00:00
brian 66370a33c2 tried to add if-statement to load_dotenv to see if this disturbs CI tests 2025-03-17 21:12:19 +00:00
brian 5870c3b0a3 added no chache-option to poetry 2025-03-17 21:11:52 +00:00
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -20,6 +20,7 @@ jobs:
POETRY_VERSION: 2.1.1
POETRY_HOME: /opt/poetry
POETRY_NO_INTERACTION: 1
POETRY_NO_CACHE: 1
run: |
curl -sSL https://install.python-poetry.org | python3 -
export PATH=$POETRY_HOME/bin:$PATH
@@ -33,7 +33,8 @@ random.seed(13)
# load local test environment variables
test_env_path = Path(__file__).parent.parent.parent.parent.parent / 'test.env'
load_dotenv('test.env')
if test_env_path.exists():
load_dotenv(test_env_path.as_posix())
# define test environment variables
env_var_map = {