Update .drone.yml
Some checks failed
/ test-build (pull_request) Failing after 19s
continuous-integration/drone/pr Build is failing

This commit is contained in:
2025-10-25 07:58:23 +01:00
parent 03c42dcd68
commit 612a5c152d

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