Update .drone.yml #4

Closed
WorldTeacher wants to merge 6 commits from chore-update-drone into main
Showing only changes of commit 612a5c152d - Show all commits

View File

@@ -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