From 612a5c152dcdbc6decece9e1b44256d482afed98 Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Sat, 25 Oct 2025 07:58:23 +0100 Subject: [PATCH] Update .drone.yml --- .drone.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 8b30e23..4d1e8c3 100644 --- a/.drone.yml +++ b/.drone.yml @@ -29,7 +29,10 @@ steps: - uv python install 3.13 - uv sync --all-extras --dev # install CLI tools (ruff not bundled by default) - - uv tool install ruff mypy pytest pytest-cov + - uv tool install ruff + - uv tool install mypy + - uv tool install pytest + - uv tool install pytest-cov - ruff --version - mypy --version - ruff check . @@ -51,7 +54,7 @@ steps: - uv python install 3.13 - uv sync --all-extras --dev # tools already installed in previous step; safe to re-run for idempotency - - uv tool install pytest pytest-cov + - uv add pytest pytest-cov - pytest -q --maxfail=1 --disable-warnings --cov --cov-report=term-missing - name: build-wheel