diff --git a/.circleci/config.yml b/.circleci/config.yml index 09db37fb8c..188b02c9f1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 diff --git a/.github/workflows/test-litellm-matrix.yml b/.github/workflows/test-litellm-matrix.yml index 21e0f9d29f..e57168dd55 100644 --- a/.github/workflows/test-litellm-matrix.yml +++ b/.github/workflows/test-litellm-matrix.yml @@ -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: | diff --git a/.github/workflows/test-litellm.yml b/.github/workflows/test-litellm.yml index b3db62f0a9..cf6928897b 100644 --- a/.github/workflows/test-litellm.yml +++ b/.github/workflows/test-litellm.yml @@ -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 diff --git a/.github/workflows/test-mcp.yml b/.github/workflows/test-mcp.yml index 1c1cc82cde..2e32aae768 100644 --- a/.github/workflows/test-mcp.yml +++ b/.github/workflows/test-mcp.yml @@ -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: |