mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-17 21:59:49 +00:00
.
This commit is contained in:
parent
8ce9b3b53d
commit
780f1c41f2
3 changed files with 6 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ runs:
|
||||||
- name: Run Integration Tests
|
- name: Run Integration Tests
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
uv run ./scripts/integration-tests.sh \
|
./scripts/integration-tests.sh \
|
||||||
--stack-config '${{ inputs.stack-config }}' \
|
--stack-config '${{ inputs.stack-config }}' \
|
||||||
--provider '${{ inputs.provider }}' \
|
--provider '${{ inputs.provider }}' \
|
||||||
--test-subdirs '${{ inputs.test-subdirs }}' \
|
--test-subdirs '${{ inputs.test-subdirs }}' \
|
||||||
|
|
|
||||||
|
|
@ -193,6 +193,10 @@ run() {
|
||||||
uv pip install $part
|
uv pip install $part
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo "Checking llama packages"
|
||||||
|
uv pip list | grep llama
|
||||||
|
|
||||||
if [ -n "$external_provider_deps" ]; then
|
if [ -n "$external_provider_deps" ]; then
|
||||||
IFS='#' read -ra parts <<<"$external_provider_deps"
|
IFS='#' read -ra parts <<<"$external_provider_deps"
|
||||||
for part in "${parts[@]}"; do
|
for part in "${parts[@]}"; do
|
||||||
|
|
|
||||||
|
|
@ -114,6 +114,7 @@ echo ""
|
||||||
echo "VIRTUAL_ENV: $VIRTUAL_ENV"
|
echo "VIRTUAL_ENV: $VIRTUAL_ENV"
|
||||||
echo "Packages installed:"
|
echo "Packages installed:"
|
||||||
uv pip list
|
uv pip list
|
||||||
|
uv pip list | grep llama
|
||||||
|
|
||||||
# Check storage and memory before tests
|
# Check storage and memory before tests
|
||||||
echo "=== System Resources Before Tests ==="
|
echo "=== System Resources Before Tests ==="
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue