check_coverage
Analyze and measure test coverage for a repository, providing detailed metrics and insights to assess the effectiveness of your test suite.
Instructions
Check test coverage for a repository and provide detailed metrics
Input Schema
Name | Required | Description | Default |
---|---|---|---|
repoPath | Yes | Path to the repository | |
runTests | No | Whether to run tests to generate fresh coverage data |
Input Schema (JSON Schema)
{
"properties": {
"repoPath": {
"description": "Path to the repository",
"type": "string"
},
"runTests": {
"default": false,
"description": "Whether to run tests to generate fresh coverage data",
"type": "boolean"
}
},
"required": [
"repoPath"
],
"type": "object"
}