From bf157acccce790a268c439cb1f29658c4fc3ce68 Mon Sep 17 00:00:00 2001 From: Julio Quinteros Pro Date: Tue, 17 Feb 2026 16:08:24 -0300 Subject: [PATCH] fix: restore pytest-xdist to CI workflow - Add pytest-xdist back to pip install line (required for -n flag) - Was accidentally removed when removing pytest-retry - Without pytest-xdist, all CI jobs fail with 'unrecognized option -n' --- .github/workflows/test-litellm-matrix.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-litellm-matrix.yml b/.github/workflows/test-litellm-matrix.yml index cdcacb4cd4..7aa98036b3 100644 --- a/.github/workflows/test-litellm-matrix.yml +++ b/.github/workflows/test-litellm-matrix.yml @@ -90,8 +90,8 @@ jobs: poetry config virtualenvs.in-project true poetry install --with dev,proxy-dev --extras "proxy semantic-router" # pytest-rerunfailures is in pyproject.toml (v14.0 for Python 3.9 compat) - # NOTE: Removed pytest-retry to avoid duplicate retry mechanisms - poetry run pip install google-genai==1.22.0 \ + # pytest-xdist is required for -n (parallel workers) flag + poetry run pip install pytest-xdist google-genai==1.22.0 \ google-cloud-aiplatform>=1.38 fastapi-offline==1.7.3 python-multipart==0.0.22 openapi-core - name: Setup litellm-enterprise