From aeb4d0ee620a052c25db87828d04e2d6e3e3a43a Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Mon, 18 Aug 2025 13:16:55 -0700 Subject: [PATCH] more debug --- .github/actions/setup-test-environment/action.yml | 3 ++- scripts/integration-tests.sh | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-test-environment/action.yml b/.github/actions/setup-test-environment/action.yml index 30b9b0130..3bd728964 100644 --- a/.github/actions/setup-test-environment/action.yml +++ b/.github/actions/setup-test-environment/action.yml @@ -42,7 +42,8 @@ runs: - name: Build Llama Stack shell: bash run: | - uv run llama stack build --template ci-tests --image-type venv + echo $VIRTUAL_ENV + uv run --active llama stack build --template ci-tests --image-type venv - name: Configure git for commits shell: bash diff --git a/scripts/integration-tests.sh b/scripts/integration-tests.sh index a59b49652..b466d05f5 100755 --- a/scripts/integration-tests.sh +++ b/scripts/integration-tests.sh @@ -112,6 +112,11 @@ echo "Test Pattern: $TEST_PATTERN" echo "" echo "Packages installed:" +uv venv list +echo "Packages installed in active venv:" +uv run --active pip list + +echo "Packages installed in llama-stack venv:" uv pip list # Check storage and memory before tests