Skip to content

Commit dc19b6b

Browse files
committed
feat(Makefile): add coverage target to run tests with coverage reporting
fix(Makefile): update all target to include coverage checks before pushing
1 parent fce1747 commit dc19b6b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ lint:
1919
typecheck:
2020
mypy src/mcp_shell_server tests
2121

22+
coverage:
23+
pytest --cov=src/mcp_shell_server tests
24+
2225
# Run all checks required before pushing
2326
check: lint typecheck test
2427
fix: check format
25-
all: check test
28+
all: check test coverage

0 commit comments

Comments
 (0)