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 d59ed03 commit fe5c590Copy full SHA for fe5c590
.github/workflows/checks.yaml
@@ -49,15 +49,7 @@ jobs:
49
- name: Deploy app
50
run: docker-compose up -d --build
51
- name: Wait for app startup
52
- continue-on-error: true
53
- run: |
54
- curl localhost:8080 -so /dev/null
55
- while [[ $? -ne 0 ]]
56
- do
57
- echo "Waiting for the service in port 8080 to be up ..."
58
- sleep 5
59
60
- done
+ run: while ! $(curl localhost:8000 -so /dev/null); do echo no; sleep 5; done
61
- name: Run integration tests
62
shell: bash
63
run: pytest tests/test_integration
0 commit comments