From f4ccdee20083c2dc2fa18d8a243b647927e26e35 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Fri, 15 Aug 2025 15:30:03 -0700 Subject: [PATCH] fix(ci): skip batches directory for library client testing --- scripts/integration-tests.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/integration-tests.sh b/scripts/integration-tests.sh index 95b78e271..bf7671348 100755 --- a/scripts/integration-tests.sh +++ b/scripts/integration-tests.sh @@ -221,6 +221,11 @@ for test_subdir in $(echo "$TEST_SUBDIRS" | tr ',' '\n'); do fi fi + if [[ "$STACK_CONFIG" != *"server:"* ]] && [[ "$test_subdir" == "batches" ]]; then + echo "Skipping $test_subdir for library client until types are supported" + continue + fi + if [[ -d "tests/integration/$test_subdir" ]]; then # Find all Python test files in this directory test_files=$(find tests/integration/$test_subdir -name "test_*.py" -o -name "*_test.py")