Skip to content

Commit

Permalink
rearranging 90354
Browse files Browse the repository at this point in the history
  • Loading branch information
adRn-s committed Nov 7, 2023
1 parent ca75f2a commit 16e6055
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r parkour_app/requirements/prod.txt
pip install -r backend/requirements/prod.txt
- name: Verify migrations
Expand All @@ -65,7 +65,7 @@ jobs:
DATABASE_URL: postgres://postgres:${{ secrets.POSTGRES_PASSWORD }}@127.0.0.1:${{ job.services.postgres.ports['5432'] }}/postgres
SECRET_KEY: ${{ secrets.SECRET_KEY }}
run: |
python parkour_app/manage.py makemigrations --no-input --check --dry-run
python backend/manage.py makemigrations --no-input --check --dry-run
- name: Validate templates
Expand All @@ -74,7 +74,7 @@ jobs:
DATABASE_URL: postgres://postgres:${{ secrets.POSTGRES_PASSWORD }}@127.0.0.1:${{ job.services.postgres.ports['5432'] }}/postgres
SECRET_KEY: ${{ secrets.SECRET_KEY }}
run: |
python parkour_app/manage.py validate_templates
python backend/manage.py validate_templates
- name: Run unittests
Expand All @@ -83,5 +83,5 @@ jobs:
DATABASE_URL: postgres://postgres:${{ secrets.POSTGRES_PASSWORD }}@127.0.0.1:${{ job.services.postgres.ports['5432'] }}/postgres
SECRET_KEY: ${{ secrets.SECRET_KEY }}
run: |
python parkour_app/manage.py test parkour_app --parallel
python backend/manage.py test backend --parallel
4 changes: 2 additions & 2 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ jobs:
name: test-suite-report
# if-no-files-found: ignore ## default: warn
path: |
parkour_app/playwright/videos/
parkour_app/playwright/results/
backend/playwright/videos/
backend/playwright/results/
retention-days: 30

0 comments on commit 16e6055

Please sign in to comment.