We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 130672d commit d7e0a61Copy full SHA for d7e0a61
Makefile
@@ -18,13 +18,13 @@ tests:
18
19
.PHONY: coverage
20
coverage:
21
- 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"
22
uv run coverage xml -o coverage.xml
23
uv run coverage report -m --fail-under=80
24
25
.PHONY: coverage-report
26
coverage-report:
27
- uv run coverage run -m pytest tests
+ uv run coverage run --omit="src/mcp_agent/cli/**" -m pytest tests
28
uv run coverage html
29
30
.PHONY: schema
0 commit comments