From 691c4dfe7b3004fff7e881b6bce9813ad791a501 Mon Sep 17 00:00:00 2001 From: gpapathan87 Date: Fri, 27 Jun 2025 14:53:37 +0300 Subject: [PATCH] update gitlab-ci --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9f5d46c..1f94c3a 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 -- GitLab