From 84b784fc2b5ce406d58dcc5a814285aa5a4fe950 Mon Sep 17 00:00:00 2001 From: aitbc Date: Mon, 20 Apr 2026 21:18:39 +0200 Subject: [PATCH] fix: add port 9001 to integration-tests service readiness check - 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 --- .gitea/workflows/integration-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/integration-tests.yml b/.gitea/workflows/integration-tests.yml index 8ef5cc4d..b06b031b 100644 --- a/.gitea/workflows/integration-tests.yml +++ b/.gitea/workflows/integration-tests.yml @@ -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