Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ tests:

.PHONY: coverage
coverage:
uv run coverage run -m pytest tests -m "not integration"
uv run coverage run --omit="src/mcp_agent/cli/**" -m pytest tests -m "not integration"
uv run coverage xml -o coverage.xml
uv run coverage report -m --fail-under=80

.PHONY: coverage-report
coverage-report:
uv run coverage run -m pytest tests
uv run coverage run --omit="src/mcp_agent/cli/**" -m pytest tests
uv run coverage html

.PHONY: schema
Expand Down
Loading