Skip to content

Commit d7e0a61

Browse files
committed
Temporarily exclude CLI from test coverage
1 parent 130672d commit d7e0a61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ tests:
1818

1919
.PHONY: coverage
2020
coverage:
21-
uv run coverage run -m pytest tests -m "not integration"
21+
uv run coverage run --omit="src/mcp_agent/cli/**" -m pytest tests -m "not integration"
2222
uv run coverage xml -o coverage.xml
2323
uv run coverage report -m --fail-under=80
2424

2525
.PHONY: coverage-report
2626
coverage-report:
27-
uv run coverage run -m pytest tests
27+
uv run coverage run --omit="src/mcp_agent/cli/**" -m pytest tests
2828
uv run coverage html
2929

3030
.PHONY: schema

0 commit comments

Comments
 (0)