diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9f5d46c6557229d240f67f5f1cf7b8178f4f4925..1f94c3afc88fa9fea768bc08fe395123d8eb8a5c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,13 +3,13 @@ image: python:3.12 stages: - test -before_script: - - python -m pip install --upgrade pip - - pip install uv - # Install dependencies system-wide (no venv) - - uv pip install -e . --system - test: stage: test + before_script: + - python -m pip install --upgrade pip + - pip install uv script: + - uv pip install -e . --system + # Install types-requests to fix mypy + - pip install types-requests - uv run tox