ci: use docker-compose pull -q

This commit is contained in:
Jens Langhammer 2020-06-08 10:58:44 +02:00
parent 8859806d64
commit 3b6e414d0f
3 changed files with 3 additions and 3 deletions

View File

@ -141,7 +141,7 @@ jobs:
- name: Setup test containers and run tests
run: |
cd e2e
docker-compose pull
docker-compose pull -q
docker-compose up -d
docker-compose exec -T passbook bash -c "pip install -r /app/requirements-dev.txt"
# This is temporary as we don't have selenium as a dependency yet

View File

@ -82,7 +82,7 @@ jobs:
- uses: actions/checkout@v1
- name: Run test suite in final docker images
run: |
docker-compose pull
docker-compose pull -q
docker-compose up --no-start
docker-compose start postgresql redis
docker-compose run -u root server bash -c "pip install --no-cache -r requirements-dev.txt && ./manage.py test"

View File

@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@master
- name: Pre-release test
run: |
docker-compose pull
docker-compose pull -q
docker build \
--no-cache \
-t beryju/passbook:latest \