From c0ec1f52e3d751a2d3d95430efef63d78dbb2385 Mon Sep 17 00:00:00 2001 From: Neil Date: Wed, 8 Apr 2026 23:10:02 +0800 Subject: [PATCH] fix(tests): add orbstack context to kubectl port-forward in integration tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🍷 Generated with Lenos Assisted-by: MiniMax-M2.7-highspeed via Lenos --- scripts/run-integration-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-integration-tests.sh b/scripts/run-integration-tests.sh index d92786c..9d02c09 100755 --- a/scripts/run-integration-tests.sh +++ b/scripts/run-integration-tests.sh @@ -26,7 +26,7 @@ if nc -z 127.0.0.1 "$LOCAL_PORT" 2>/dev/null; then fi echo "starting kubectl port-forward on 127.0.0.1:$LOCAL_PORT..." -kubectl port-forward -n "$NAMESPACE" "svc/$SERVICE" "$LOCAL_PORT:5432" & +kubectl port-forward -n "$NAMESPACE" "svc/$SERVICE" "$LOCAL_PORT:5432" --context orbstack & PF_PID=$! # Wait for port to be open (up to 15s)