lint pipe fixes
Some checks failed
ci/woodpecker/push/tests Pipeline failed
ci/woodpecker/push/lints Pipeline was successful

This commit is contained in:
2026-04-19 19:25:10 +03:00
parent bac008b920
commit fd5e6a5dcb
2 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ steps:
image: python:3.11
commands:
- pip install uv
- uv sync --only-group lints
- uv sync --no-dev --only-group lints
- uv run black --check .
- uv run ruff check .
- uv run isort --check-only .
@@ -15,5 +15,5 @@ steps:
image: python:3.11
commands:
- pip install uv
- uv sync --only-group types
- uv sync --no-dev --only-group types
- uv run mypy .

View File

@@ -7,6 +7,6 @@ steps:
image: python:3.11
commands:
- pip install uv
- uv sync --group tests
- uv sync --no-dev --group tests
- uv run pytest