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