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 61bf78c
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/test-conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,15 @@ jobs:
cp .env.example .env
# start the stack
docker compose \
-f docker-compose.yml \
-f docker-compose.override.yml \
-f docker-compose.tests.yml \
up postgres django conformance_suite --build -d
COMPOSE_FILE=docker-compose.yml:docker-compose.override.yml:docker-compose.tests.yml
docker compose 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
Expand Down

0 comments on commit 61bf78c

Please sign in to comment.