Files
deer-flow/Makefile

23 lines
465 B
Makefile
Raw Permalink Normal View History

.PHONY: lint format install-dev serve test coverage
install-dev:
uv pip install -e ".[dev]" && uv pip install -e ".[test]"
format:
uv run black --preview .
lint:
uv run black --check .
serve:
2025-04-23 14:38:04 +08:00
uv run server.py --reload
test:
uv run pytest tests/
2025-04-25 14:15:42 +08:00
langgraph-dev:
uvx --refresh --from "langgraph-cli[inmem]" --with-editable . --python 3.12 langgraph dev --allow-blocking
coverage:
2025-05-15 23:56:13 +08:00
uv run pytest --cov=src tests/ --cov-report=term-missing --cov-report=xml