Compare commits

..
2 Commits
Author SHA1 Message Date
brian e9340f17c4 print out env vars for debugging
Code Quality Pipeline / Check Code (pull_request) Failing after 3m18s
2025-03-17 20:57:43 +00:00
brian 282fee0806 fixed spelling mistake 2025-03-17 20:57:30 +00:00
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -43,6 +43,10 @@ jobs:
MINIO_SECRET_KEY: ${{ secrets.MINIO_SECRET_KEY }}
MONGO_ENDPOINT: ${{ vars.MONGO_ENDPOINT }}
run: |
echo "MINIO_ENDPOINT=${MINIO_ENDPOINT}"
echo "MINIO_ACCESS_KEY=${MINIO_ACCESS_KEY}"
echo "MINIO_SECRET_KEY=${MINIO_SECRET_KEY}"
echo "MONGO_ENDPOINT=${MONGO_ENDPOINT}"
/opt/poetry/bin/poetry run coverage run -m pytest .
- name: Coverage Report
run: |
@@ -31,7 +31,7 @@ from shared.repositories.src.implementations import (
# set random seed for reproducibility
random.seed(13)
# load loca test environment variables
# load local test environment variables
test_env_path = Path(__file__).parent.parent.parent.parent.parent / 'test.env'
load_dotenv('test.env')