This commit is contained in:
Ashwin Bharambe 2025-08-18 14:50:24 -07:00
parent 0d25c62ab2
commit f550d921be
2 changed files with 5 additions and 1 deletions

View file

@ -36,6 +36,10 @@ runs:
- name: Run Integration Tests - name: Run Integration Tests
shell: bash shell: bash
run: | run: |
# TODO: make sure this virtual environment is the same as the one used in the setup-runner action
VIRTUAL_ENV=github-actions-runner
source $VIRTUAL_ENV/bin/activate
uv run --verbose --active ./scripts/integration-tests.sh \ uv run --verbose --active ./scripts/integration-tests.sh \
--stack-config '${{ inputs.stack-config }}' \ --stack-config '${{ inputs.stack-config }}' \
--provider '${{ inputs.provider }}' \ --provider '${{ inputs.provider }}' \

View file

@ -31,7 +31,7 @@ runs:
uv sync --active --all-groups uv sync --active --all-groups
echo "Installing ad-hoc dependencies" echo "Installing ad-hoc dependencies"
uv pip install ollama faiss-cpu uv pip install faiss-cpu
# Install llama-stack-client-python based on the client-version input # Install llama-stack-client-python based on the client-version input
if [ "${{ inputs.client-version }}" = "latest" ]; then if [ "${{ inputs.client-version }}" = "latest" ]; then