ci: attempt to fix e2e not a tty error

This commit is contained in:
Jens Langhammer 2020-06-07 19:57:01 +02:00
parent 2291ae98c3
commit 0ca7579d19
1 changed files with 2 additions and 2 deletions

View File

@ -143,10 +143,10 @@ jobs:
cd e2e
docker-compose pull
docker-compose up -d
docker-compose exec passbook pip install -r /app/requirements-dev.txt
docker-compose exec passbook bash -c "pip install -r /app/requirements-dev.txt"
- name: Run e2e tests
run: |
docker-compose exec passbook ./manage.py test e2e
docker-compose exec passbook bash -c "./manage.py test e2e"
# Build
build-server:
needs: