From 76c7fe1d6f09dcdc832dae12c0a2ebfdbe403e94 Mon Sep 17 00:00:00 2001 From: jasonwitty Date: Thu, 4 Sep 2025 06:11:59 -0700 Subject: [PATCH] Fix CI: Update test path for WebSocket integration test --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 973def7..fe26f72 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: kill $AGENT_PID || true exit 1 fi - SOCKTOP_WS=ws://127.0.0.1:3000/ws cargo test -p socktop --test ws_probe -- --nocapture + SOCKTOP_WS=ws://127.0.0.1:3000/ws cargo test -p socktop_connector --test integration_test -- --nocapture kill $AGENT_PID || true - name: "Windows: start agent and run WS probe" @@ -79,7 +79,7 @@ jobs: } $env:SOCKTOP_WS = "ws://127.0.0.1:3000/ws" try { - cargo test -p socktop --test ws_probe -- --nocapture + cargo test -p socktop_connector --test integration_test -- --nocapture } finally { if ($p -and !$p.HasExited) { Stop-Process -Id $p.Id -Force -ErrorAction SilentlyContinue } }