fix(ci): lock the ruff version from the backend Makefile (#4435)

This commit is contained in:
Willem Jiang 2026-07-24 08:46:55 +08:00 committed by GitHub
parent 5f0108f56c
commit 959f052750
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,11 +14,11 @@ test-blocking-io:
PYTHONPATH=. PYTHONIOENCODING=utf-8 PYTHONUTF8=1 uv run pytest tests/blocking_io -q --tb=short
lint:
uvx ruff check .
uvx ruff format --check .
uv run ruff check .
uv run ruff format --check .
format:
uvx ruff check . --fix && uvx ruff format .
uv run ruff check . --fix && uv run ruff format .
detect-blocking-io:
@PYTHONPATH=. PYTHONIOENCODING=utf-8 PYTHONUTF8=1 uv run python ../scripts/detect_blocking_io_static.py --output ../.deer-flow/blocking-io-findings.json