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 f97e548 commit 45c8959Copy full SHA for 45c8959
.github/workflows/checks.yaml
@@ -49,7 +49,14 @@ jobs:
49
- name: Deploy app
50
run: docker-compose up -d --build
51
- name: Wait for app startup
52
- run: sleep 20
+ run: |
53
+ curl localhost:8080 -so /dev/null
54
+ while [[ $? -ne 0 ]]
55
+ do
56
+ echo "Waiting for the service in port 8080 to be up ..."
57
+ sleep 5
58
59
+ done
60
- name: Run integration tests
61
shell: bash
62
run: pytest tests/test_integration
0 commit comments