fix: add port 9001 to integration-tests service readiness check
All checks were successful
Integration Tests / test-service-integration (push) Successful in 38s

- Add port 9001 to service readiness check in integration-tests.yml
- Fixes ConnectionError in test_agent_coordinator_api.py
- Test expects coordinator-api on port 9001 but workflow wasn't waiting for it
This commit is contained in:
aitbc
2026-04-20 21:18:39 +02:00
parent f06bbff370
commit 84b784fc2b

View File

@@ -72,7 +72,7 @@ jobs:
run: |
echo "Waiting for services..."
services_available=true
for port in 8000 8001 8003 8006; do
for port in 8000 8001 8003 8006 9001; do
port_ready=0
for i in $(seq 1 15); do
code=$(curl -so /dev/null -w '%{http_code}' "http://localhost:$port/health" 2>/dev/null) || code=0