From 2bbe7bff6dfceec8fc8e3c8accd8210d44198603 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Fri, 15 Aug 2025 12:46:58 -0700 Subject: [PATCH] exit after vision tests --- scripts/integration-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/integration-tests.sh b/scripts/integration-tests.sh index 6e05c8f47..95b78e271 100755 --- a/scripts/integration-tests.sh +++ b/scripts/integration-tests.sh @@ -194,11 +194,11 @@ if [[ "$RUN_VISION_TESTS" == "true" ]]; then echo "✅ Vision tests completed successfully" elif [ $exit_code -eq 5 ]; then echo "⚠️ No vision tests collected (pattern matched no tests)" - exit 0 else echo "❌ Vision tests failed" exit 1 fi + exit 0 fi # Run regular tests