From 780f1c41f23ba03385ffdc21f67731b8925ed94a Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Mon, 18 Aug 2025 14:23:55 -0700 Subject: [PATCH] . --- .github/actions/run-and-record-tests/action.yml | 2 +- llama_stack/core/build_venv.sh | 4 ++++ scripts/integration-tests.sh | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/actions/run-and-record-tests/action.yml b/.github/actions/run-and-record-tests/action.yml index 6d2916b0b..1406c6077 100644 --- a/.github/actions/run-and-record-tests/action.yml +++ b/.github/actions/run-and-record-tests/action.yml @@ -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 }}' \ diff --git a/llama_stack/core/build_venv.sh b/llama_stack/core/build_venv.sh index 04927d71e..6e1606e4e 100755 --- a/llama_stack/core/build_venv.sh +++ b/llama_stack/core/build_venv.sh @@ -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 diff --git a/scripts/integration-tests.sh b/scripts/integration-tests.sh index 58f54b426..cbde06733 100755 --- a/scripts/integration-tests.sh +++ b/scripts/integration-tests.sh @@ -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 ==="