dify/dify-agent/Makefile
2026-04-24 22:47:52 +08:00

15 lines
334 B
Makefile

.DEFAULT_GOAL := help
.PHONY: help typecheck test
help:
@echo "Dify agent targets:"
@echo " make typecheck - Run basedpyright for dify-agent src and tests"
@echo " make test - Run dify-agent pytest suite"
typecheck:
@uv run --project . python -m basedpyright src tests
test:
@uv run --project . python -m pytest tests