Skip to content

Commit 9f8c927

Browse files
committed
Fix 'Tests done' is skipped if some test is failed
1 parent d195b8e commit 9f8c927

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Start containers
3131
run: |
3232
docker compose -f docker-compose.test.yml down -v --remove-orphans
33-
docker compose -f docker-compose.test.yml up --wait-timeout 5 -d
33+
docker compose -f docker-compose.test.yml up -d --wait --wait-timeout 30
3434
3535
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
3636
uses: actions/setup-python@v5
@@ -76,6 +76,8 @@ jobs:
7676
all_done:
7777
name: Tests done
7878
runs-on: ubuntu-latest
79+
80+
if: always()
7981
needs: [tests]
8082

8183
steps:

0 commit comments

Comments
 (0)