From d21384b4d2ba62629f5affe89a50b6e0412217d1 Mon Sep 17 00:00:00 2001 From: acailic Date: Mon, 13 Apr 2026 06:49:03 +0200 Subject: [PATCH] fix: include [dev] extras in install-dev to fix pytest-timeout missing Replaces the manual, incomplete pip install list with the [dev] extras group so new contributors can run make test immediately after make install-dev. Closes #154 Co-Authored-By: Claude Sonnet 4.6 --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ca55453..1bdf9ee 100644 --- a/Makefile +++ b/Makefile @@ -27,8 +27,7 @@ install: pip install -e ".[server]" install-dev: - pip install -e ".[server,langchain,pydantic-ai,crewai]" - pip install pytest pytest-asyncio ruff + pip install -e ".[server,langchain,pydantic-ai,crewai,dev]" API_PORT ?= 8000