We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7c5e31 commit 2b46942Copy full SHA for 2b46942
.github/workflows/checks.yaml
@@ -49,7 +49,9 @@ jobs:
49
- name: Deploy app
50
run: docker-compose up -d --build
51
- name: Wait for app startup
52
- run: while ! $(curl localhost:8080 -so /dev/null); do echo "Waiting for the app to be up..."; docker-compose ps; sleep 5; done
+ run: |
53
+ { sleep 120; echo "TIMEOUT!"; return 5; } &
54
+ while ! $(curl localhost:8080 -so /dev/null); do echo "Waiting for the app to be up..."; docker-compose ps; sleep 5; done
55
- name: Run integration tests
56
shell: bash
57
run: pytest tests/test_integration
0 commit comments