Adding step to force all the docker images to be up and running before the tests are run

This commit is contained in:
Chris Hartjes 2020-04-29 14:06:58 -04:00
Родитель 422dd98660
Коммит 1c05d845b4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -75,5 +75,5 @@ generate_deploy_bug: build
create_superuser:
docker-compose run app sh -c "/app/bin/wait-for-it.sh db:5432 -- python manage.py createsuperuser --noinput --email=test-user@example.com --user=testuser"
contract_tests: refresh create_superuser
contract_tests: refresh create_superuser up
docker-compose run test sh -c "/app/bin/wait-for-it.sh db:5432 -- pytest contract-tests/ --server https://app:8000"