diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 6c273564..f34ba6a4 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -61,16 +61,16 @@ jobs: - name: Wait for coordinator (django server) run: | - while [ "$(docker inspect --format "{{.State.Health.Status}}" coordinator)" != "healthy" ]; do + while [ "$(docker inspect --format "{{.State.Health.Status}}" test-coordinator)" != "healthy" ]; do echo "Waiting for coordinator to be healthy..." sleep 5 done - name: 'Run tests with coverage' run: | - docker exec coordinator coverage run manage.py test - docker exec coordinator coverage report - docker exec coordinator coverage html + docker exec test-coordinator coverage run manage.py test + docker exec test-coordinator coverage report + docker exec test-coordinator coverage html env: LNVENDOR: ${{ matrix.ln-vendor }} DEVELOPMENT: True