This commit is contained in:
Ashwin Bharambe 2025-08-18 14:23:55 -07:00
parent 8ce9b3b53d
commit 780f1c41f2
3 changed files with 6 additions and 1 deletions

View file

@ -36,7 +36,7 @@ runs:
- name: Run Integration Tests
shell: bash
run: |
uv run ./scripts/integration-tests.sh \
./scripts/integration-tests.sh \
--stack-config '${{ inputs.stack-config }}' \
--provider '${{ inputs.provider }}' \
--test-subdirs '${{ inputs.test-subdirs }}' \

View file

@ -193,6 +193,10 @@ run() {
uv pip install $part
done
fi
echo "Checking llama packages"
uv pip list | grep llama
if [ -n "$external_provider_deps" ]; then
IFS='#' read -ra parts <<<"$external_provider_deps"
for part in "${parts[@]}"; do

View file

@ -114,6 +114,7 @@ echo ""
echo "VIRTUAL_ENV: $VIRTUAL_ENV"
echo "Packages installed:"
uv pip list
uv pip list | grep llama
# Check storage and memory before tests
echo "=== System Resources Before Tests ==="