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