22-tool MCP server for Node-RED flow management with Pydantic models, incremental flow patching, layout linting, and flexible auth (token, basic, OAuth2). 137 tests, full ruff compliance. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
249 B
Makefile
18 lines
249 B
Makefile
.PHONY: all check test lint format fix
|
|
|
|
all: format lint test
|
|
|
|
check: lint test
|
|
|
|
test:
|
|
uv run pytest tests/ -v
|
|
|
|
lint:
|
|
uv run ruff check src/ tests/
|
|
|
|
format:
|
|
uv run ruff format src/ tests/
|
|
|
|
fix:
|
|
uv run ruff check --fix --unsafe-fixes src/ tests/
|