fix(ci): force uv to use system python
All checks were successful
CI/CD Pipeline / Code Quality Checks (pull_request) Successful in 1m57s
CI/CD Pipeline / Run Tests (pull_request) Successful in 2m19s
CI/CD Pipeline / Run API Inventory E2E Tests (pull_request) Successful in 34s
CI/CD Pipeline / Telegram Notify Success (pull_request) Successful in 20s

This commit is contained in:
2026-03-24 14:32:41 +01:00
parent 08c4475233
commit d5e09c18bb

View File

@@ -46,7 +46,13 @@ jobs:
"${PYTHON_BIN}" -m venv .venv
. .venv/bin/activate
python -m pip install --upgrade pip uv
uv sync --dev --frozen
uv sync \
--dev \
--frozen \
--active \
--python "${PYTHON_BIN}" \
--no-managed-python \
--no-python-downloads
- name: Run Ruff linting
run: |
@@ -121,7 +127,13 @@ jobs:
"${PYTHON_BIN}" -m venv .venv
. .venv/bin/activate
python -m pip install --upgrade pip uv
uv sync --dev --frozen
uv sync \
--dev \
--frozen \
--active \
--python "${PYTHON_BIN}" \
--no-managed-python \
--no-python-downloads
- name: Run regular pytest suite
env: