mirror of
https://github.com/langgenius/dify.git
synced 2026-05-09 12:59:18 +08:00
15 lines
334 B
Makefile
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
|