From 9371ad23ee7270e1d64909496de639f7998e62a9 Mon Sep 17 00:00:00 2001 From: Willem Jiang Date: Wed, 22 Oct 2025 17:06:41 +0800 Subject: [PATCH] Polish the Makefile comment (#644) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5c04c0b..eabcba5 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ help: ## Show this help message @echo "" @echo "Usage: make " -install-dev: ## Install development dependencies +install-dev: ## Install development dependencies which could be optional for normal usage uv pip install -e ".[dev]" && uv pip install -e ".[test]" format: ## Format code using ruff @@ -26,7 +26,7 @@ lint-frontend: ## Lint frontend code, run tests, and check build serve: ## Start development server with reload uv run server.py --reload -test: ## Run tests with pytest +test: ## Run tests with pytest, need to run after 'make install-dev' for first time uv run pytest tests/ langgraph-dev: ## Start langgraph development server