Merge branch 'main' into add-batches

This commit is contained in:
Ashwin Bharambe 2025-08-15 15:30:24 -07:00 committed by GitHub
commit d5deeae935
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -221,6 +221,11 @@ for test_subdir in $(echo "$TEST_SUBDIRS" | tr ',' '\n'); do
fi fi
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 if [[ -d "tests/integration/$test_subdir" ]]; then
# Find all Python test files in this directory # Find all Python test files in this directory
test_files=$(find tests/integration/$test_subdir -name "test_*.py" -o -name "*_test.py") test_files=$(find tests/integration/$test_subdir -name "test_*.py" -o -name "*_test.py")