Files
deer-flow/Makefile
zgjja 3b4e993531 feat: 1. replace black with ruff for fomatting and sort import (#489)
2. use tavily from`langchain-tavily` rather than the older one from `langchain-community`

Co-authored-by: Willem Jiang <willem.jiang@gmail.com>
2025-08-17 22:57:23 +08:00

23 lines
523 B
Makefile

.PHONY: lint format install-dev serve test coverage
install-dev:
uv pip install -e ".[dev]" && uv pip install -e ".[test]"
format:
uv run ruff format --config pyproject.toml .
lint:
uv run ruff check --fix --select I --config pyproject.toml .
serve:
uv run server.py --reload
test:
uv run pytest tests/
langgraph-dev:
uvx --refresh --from "langgraph-cli[inmem]" --with-editable . --python 3.12 langgraph dev --allow-blocking
coverage:
uv run pytest --cov=src tests/ --cov-report=term-missing --cov-report=xml