mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-17 21:25:46 +02:00
13 lines
200 B
Makefile
13 lines
200 B
Makefile
.PHONY: lint format
|
|
|
|
lint:
|
|
poetry run ruff .
|
|
poetry run ruff format . --diff
|
|
poetry run mypy .
|
|
|
|
format:
|
|
poetry run ruff format .
|
|
poetry run ruff --select I --fix .
|
|
|
|
test:
|
|
poetry run pytest tests
|