Files
deer-flow/Makefile

20 lines
324 B
Makefile
Raw 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/
coverage:
uv run pytest --cov=src tests/ --cov-report=term-missing