fix(ci): install native wheel before route smoke test

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
Yujong Lee 2026-09-16 19:14:57 +00:00
parent e09da4d485
commit 61fc005fd5

View file

@ -138,7 +138,10 @@ jobs:
env:
RELEASE_WHEEL_COMMIT_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
- run: python tests/test_litellm/rust_bridge/native_route_wheel_test.py dist/*.whl
- run: |
uv venv wheel-venv
uv pip install --python wheel-venv/bin/python dist/*.whl
wheel-venv/bin/python tests/test_litellm/rust_bridge/native_route_wheel_test.py dist/*.whl
- name: Run pytest tests/test_litellm_rust with the compiled extension
run: make test-rust-extension