Skip to content

Commit

Permalink
try setting the PYTHONPATH before running tests to get backend/tests …
Browse files Browse the repository at this point in the history
…into path
  • Loading branch information
kevinschaper committed Jan 9, 2025
1 parent 9c66192 commit 5e08d73
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ jobs:
# run pytest
#----------------------------------------------
- name: Run tests
run: poetry -C backend run pytest backend/tests
run: |
export PYTHONPATH=./backend
poetry -C backend run pytest backend/tests
shell: bash

#----------------------------------------------
# coverage report
Expand Down

0 comments on commit 5e08d73

Please sign in to comment.