Files
python-sdk/.pre-commit-config.yaml
Tasnim Kabir Sadik 06b4a8cbcb
All checks were successful
ci/woodpecker/pr/check Pipeline was successful
Merge issues fixed
2026-05-02 21:46:16 +06:00

26 lines
594 B
YAML

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.10
hooks:
- id: ruff
- id: ruff-format
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.20.0
hooks:
- id: mypy
additional_dependencies:
- pydantic>=2.12.5
- httpx>=0.28.1
- httpx-ws>=0.9.0
- email-validator>=2.3.0
- repo: local
hooks:
- id: unit-tests
name: unit tests
entry: uv run pytest -m "not integration" -x -q
language: system
pass_filenames: false
always_run: true