mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-21 01:15:10 +00:00
fix(ci): skip batches directory for library client testing
This commit is contained in:
parent
0e8bb94bf3
commit
f4ccdee200
1 changed files with 5 additions and 0 deletions
|
@ -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")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue