mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 09:53:45 +00:00
fix(ci): Install ci-tests distribution dependencies to fix test failures
The CI integration tests were failing with a signature mismatch error, but the root cause was missing dependencies (specifically the 'together' package). The signature mismatch was a misleading error that occurred because the provider modules failed to load properly due to missing dependencies. This fix adds a step to install all ci-tests distribution dependencies using: llama stack list-deps ci-tests | xargs -L1 uv pip install This ensures all required provider dependencies are installed before running tests.
This commit is contained in:
parent
0754d59999
commit
844a159219
1 changed files with 3 additions and 0 deletions
3
.github/actions/setup-runner/action.yml
vendored
3
.github/actions/setup-runner/action.yml
vendored
|
|
@ -61,6 +61,9 @@ runs:
|
|||
echo "Force reinstalling llama-stack from source to ensure latest changes"
|
||||
uv pip install --force-reinstall --no-deps -e .
|
||||
|
||||
echo "Installing ci-tests distribution dependencies"
|
||||
llama stack list-deps ci-tests | xargs -L1 uv pip install
|
||||
|
||||
echo "Installing ad-hoc dependencies"
|
||||
uv pip install faiss-cpu
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue