Skip to content

Commit f4ccdee

Browse files
committed
fix(ci): skip batches directory for library client testing
1 parent 0e8bb94 commit f4ccdee

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

scripts/integration-tests.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,11 @@ for test_subdir in $(echo "$TEST_SUBDIRS" | tr ',' '\n'); do
221221
fi
222222
fi
223223

224+
if [[ "$STACK_CONFIG" != *"server:"* ]] && [[ "$test_subdir" == "batches" ]]; then
225+
echo "Skipping $test_subdir for library client until types are supported"
226+
continue
227+
fi
228+
224229
if [[ -d "tests/integration/$test_subdir" ]]; then
225230
# Find all Python test files in this directory
226231
test_files=$(find tests/integration/$test_subdir -name "test_*.py" -o -name "*_test.py")

0 commit comments

Comments
 (0)