Merge pull request #21506 from BerriAI/fix/enterprise-install-wrong-venv

fix(ci): install enterprise package into main project venv, not enterprise's own venv
This commit is contained in:
jquinter
2026-02-18 21:31:48 -03:00
committed by GitHub
4 changed files with 4 additions and 10 deletions
+1 -3
View File
@@ -21,9 +21,7 @@ commands:
- run:
name: "Install local version of litellm-enterprise"
command: |
cd enterprise
python -m pip install --force-reinstall --no-deps -e .
cd ..
pip install --force-reinstall --no-deps -e enterprise/
setup_litellm_test_deps:
steps:
- checkout
+1 -1
View File
@@ -100,7 +100,7 @@ jobs:
- name: Setup litellm-enterprise
run: |
cd enterprise && poetry run pip install --force-reinstall --no-deps -e . && cd ..
poetry run pip install --force-reinstall --no-deps -e enterprise/
- name: Generate Prisma client
run: |
+1 -3
View File
@@ -42,9 +42,7 @@ jobs:
poetry run pip install "openapi-core"
- name: Setup litellm-enterprise as local package
run: |
cd enterprise
poetry run pip install --force-reinstall --no-deps -e .
cd ..
poetry run pip install --force-reinstall --no-deps -e enterprise/
- name: Run tests
run: |
poetry run pytest tests/test_litellm --tb=short -vv --maxfail=10 -n 4 --durations=50
+1 -3
View File
@@ -40,9 +40,7 @@ jobs:
- name: Setup litellm-enterprise as local package
run: |
cd enterprise
python -m pip install --force-reinstall --no-deps -e .
cd ..
poetry run pip install --force-reinstall --no-deps -e enterprise/
- name: Run MCP tests
run: |