Skip to content

Commit d8ce82c

Browse files
committed
chore(ci): attempt to fix test ci
1 parent 8565afe commit d8ce82c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,17 @@ jobs:
5757
5858
- name: Check for ungenerated database migrations
5959
run: |
60-
export PYTHONPATH=$PYTHONPATH:${{ github.workspace }}
61-
cd ${{ github.workspace }}
62-
DJANGO_SETTINGS_MODULE=app.pydotorg.settings.dev python app/manage.py makemigrations --check --dry-run
60+
export PYTHONPATH=$PYTHONPATH:${{ github.workspace }}/app
61+
cd ${{ github.workspace }}/app
62+
DJANGO_SETTINGS_MODULE=pydotorg.settings.dev python manage.py makemigrations --check --dry-run
6363
env:
6464
DATABASE_URL: postgres://postgres:postgres@localhost:5432/pythonorg
6565

6666
- name: Run Tests
6767
run: |
68-
export PYTHONPATH=$PYTHONPATH:${{ github.workspace }}
69-
cd ${{ github.workspace }}
70-
DJANGO_SETTINGS_MODULE=app.pydotorg.settings.dev python -Wd -m coverage run app/manage.py test -v2
68+
export PYTHONPATH=$PYTHONPATH:${{ github.workspace }}/app
69+
cd ${{ github.workspace }}/app
70+
DJANGO_SETTINGS_MODULE=pydotorg.settings.dev python -Wd -m coverage run manage.py test -v2
7171
env:
7272
DATABASE_URL: postgres://postgres:postgres@localhost:5432/pythonorg
7373

0 commit comments

Comments
 (0)