diff --git a/.github/actions/run-and-record-tests/action.yml b/.github/actions/run-and-record-tests/action.yml index 505ae6bbf..5012e141d 100644 --- a/.github/actions/run-and-record-tests/action.yml +++ b/.github/actions/run-and-record-tests/action.yml @@ -40,7 +40,7 @@ runs: VIRTUAL_ENV=github-actions-runner source $VIRTUAL_ENV/bin/activate - uv run --verbose --active ./scripts/integration-tests.sh \ + uv run --verbose --active --no-sync ./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 6e1606e4e..04927d71e 100755 --- a/llama_stack/core/build_venv.sh +++ b/llama_stack/core/build_venv.sh @@ -193,10 +193,6 @@ 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 cbde06733..e152444e1 100755 --- a/scripts/integration-tests.sh +++ b/scripts/integration-tests.sh @@ -111,9 +111,7 @@ echo "Inference Mode: $INFERENCE_MODE" echo "Test Pattern: $TEST_PATTERN" echo "" -echo "VIRTUAL_ENV: $VIRTUAL_ENV" -echo "Packages installed:" -uv pip list +echo "Checking llama packages" uv pip list | grep llama # Check storage and memory before tests