From cc21780e9934a3c699ca9ed869fcc53f7536fe6b Mon Sep 17 00:00:00 2001 From: Richard Tang Date: Fri, 3 Apr 2026 20:49:12 -0700 Subject: [PATCH] test: ignore dummy agent in make --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 10c00b1e..97a57205 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ check: ## Run all checks without modifying files (CI-safe) cd tools && uv run ruff format --check . test: ## Run all tests (core + tools, excludes live) - cd core && uv run python -m pytest tests/ -v + cd core && uv run python -m pytest tests/ -v --ignore=tests/dummy_agents cd tools && uv run python -m pytest -v test-tools: ## Run tool tests only (mocked, no credentials needed) @@ -38,7 +38,7 @@ test-live: ## Run live integration tests (requires real API credentials) cd tools && uv run python -m pytest -m live -s -o "addopts=" --log-cli-level=INFO test-all: ## Run everything including live tests - cd core && uv run python -m pytest tests/ -v + cd core && uv run python -m pytest tests/ -v --ignore=tests/dummy_agents cd tools && uv run python -m pytest -v cd tools && uv run python -m pytest -m live -s -o "addopts=" --log-cli-level=INFO