Skip to content

Commit

Permalink
Cleaned up
Browse files Browse the repository at this point in the history
  • Loading branch information
why-not-try-calmer committed Apr 4, 2023
1 parent 860fb77 commit 8f82442
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/test-conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,18 @@ jobs:
up postgres django conformance_suite --build -d
# deploy static files and migrate database
docker compose run django python manage.py collectstatic --no-input
docker compose run django python manage.py migrate --no-input
docker compose exec django python manage.py collectstatic --no-input
docker compose exec django python manage.py migrate --no-input
# sprinkle some test data (refreshing computed fields is done from the command handler)
docker compose run django python manage.py init --data
docker compose exec django python manage.py init --data
# run conformance test
docker compose run test_client
docker compose \
-f docker-compose.yml \
-f docker-compose.override.yml \
-f docker-compose.tests.yml \
run test_client
- name: Failure logs
if: failure()
Expand Down

0 comments on commit 8f82442

Please sign in to comment.