8000 POC: restructure app by JacobCoffee · Pull Request #2573 · python/pythondotorg · GitHub
[go: up one dir, main page]

Skip to content

POC: restructure app #2573

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 17 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(ci): i should find a new trade
  • Loading branch information
JacobCoffee committed Sep 19, 2024
commit a31abae7e63ca7b443b09fdc69e2742d77fc439d
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ jobs:
run: |
export PYTHONPATH=$PYTHONPATH:${{ github.workspace }}/app
cd ${{ github.workspace }}/app
DJANGO_SETTINGS_MODULE=pydotorg.settings.dev python manage.py makemigrations --check --dry-run
DJANGO_SETTINGS_MODULE=app.pydotorg.settings.dev python manage.py makemigrations --check --dry-run
env:
DATABASE_URL: postgres://postgres:postgres@localhost:5432/pythonorg

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

Expand Down
Loading
0