File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -58,13 +58,13 @@ uv run pytest tests/integration
5858# Run only E2E tests (requires DATABASE_URL)
5959uv run pytest tests/e2e
6060
61- # Check code formatting and linting
61+ # Linting (required for CI)
6262uv run ruff check .
6363
64- # Auto-fix issues
64+ # Auto-fix linting issues
6565uv run ruff check . --fix
6666
67- # Format code
67+ # Formatting (required for CI)
6868uv run ruff format .
6969```
7070
Original file line number Diff line number Diff line change @@ -163,14 +163,16 @@ uv run pytest tests/unit/api/test_routers.py::test_get_specs
163163
164164### Code Quality
165165
166+ ** Both linting and formatting must pass for CI.**
167+
166168``` bash
167- # Check code formatting and linting
169+ # Linting (required for CI)
168170uv run ruff check .
169171
170- # Auto-fix issues
172+ # Auto-fix linting issues
171173uv run ruff check . --fix
172174
173- # Format code
175+ # Formatting (required for CI)
174176uv run ruff format .
175177```
176178
You can’t perform that action at this time.
0 commit comments