File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -57,17 +57,17 @@ jobs:
57
57
58
58
- name : Check for ungenerated database migrations
59
59
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
63
63
env :
64
64
DATABASE_URL : postgres://postgres:postgres@localhost:5432/pythonorg
65
65
66
66
- name : Run Tests
67
67
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
71
71
env :
72
72
DATABASE_URL : postgres://postgres:postgres@localhost:5432/pythonorg
73
73
You can’t perform that action at this time.
0 commit comments