Skip to content

Commit 8d23ba2

Browse files
committed
fix: use new path ?
1 parent 6acdf76 commit 8d23ba2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,15 @@ jobs:
4949
pip install -r requirements/dev-requirements.txt
5050
- name: Check for ungenerated database migrations
5151
run: |
52+
export PYTHONPATH=$PYTHONPATH:${{ github.workspace }}/app
5253
cd app
5354
python manage.py makemigrations --check --dry-run
5455
env:
5556
DATABASE_URL: postgres://postgres:postgres@localhost:5432/pythonorg
5657
- name: Run Tests
5758
run: |
59+
export PYTHONPATH=$PYTHONPATH:${{ github.workspace }}/app
60+
cd app
5861
python -Wd -m coverage run manage.py test -v2
5962
env:
6063
DATABASE_URL: postgres://postgres:postgres@localhost:5432/pythonorg

0 commit comments

Comments
 (0)