mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-17 21:25:46 +02:00
Add some conformance tests for checkpointer implementations. Includes additona methods that will be useful if you want to integarte in the agent server.
13 lines
158 B
Makefile
13 lines
158 B
Makefile
.PHONY: format lint test
|
|
|
|
format:
|
|
uv run ruff format .
|
|
uv run ruff check --fix .
|
|
|
|
lint:
|
|
uv run ruff check .
|
|
uv run ty check
|
|
|
|
test:
|
|
uv run pytest $(TEST)
|