fix: Export PYTHONPATH to GitHub environment for test workflows
Some checks failed
Run Tests / e2e tests (push) Failing after 55s
Run Tests / lint tests (push) Successful in 1m58s
Run Tests / unit tests (push) Successful in 2m1s

This commit is contained in:
2025-10-27 18:58:18 +01:00
parent 54137b88d7
commit 1f8a595243

View File

@@ -46,6 +46,12 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Export PYTHONPATH
shell: bash
run: |
set -euo pipefail
echo "PYTHONPATH=/workspace/allucanget/calminer" >> "$GITHUB_ENV"
# - name: Cache pip dependencies # - name: Cache pip dependencies
# uses: actions/cache@v4 # uses: actions/cache@v4
# with: # with: