Skip to content

Commit

Permalink
Add wait for port
Browse files Browse the repository at this point in the history
  • Loading branch information
lvarin committed Jan 8, 2025
1 parent ea99b66 commit 6fdde3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Deploy app
run: docker-compose up -d --build
- name: Wait for app startup
run: while ! $(curl localhost:8080 -so /dev/null); do echo "Waiting for the app to be up..."; sleep 5; done
run: while ! $(curl localhost:8080); do echo "Waiting for the app to be up..."; sleep 5; done
- name: Run integration tests
shell: bash
run: pytest tests/test_integration
Expand Down

0 comments on commit 6fdde3c

Please sign in to comment.