What problem does it solve? Python test suites often leave code paths untested without developers noticing. This Skill generates pytest coverage reports, identifies exactly which lines lack test coverage, and guides the iterative process of writing tests until every line is covered. ## Core Features & Use Cases - Coverage Report Generation: Runs pytest with the --cov flag and produces annotated source files showing line-by-line coverage status. - Missing Line Detection: Reads annotated files in the cov_annotate directory where lines prefixed with ! mark uncovered code. - Targeted Module Analysis: Supports scoping coverage checks to specific modules or individual test files for focused improvement. - Use Case: Before merging a pull request, run the coverage workflow on your module, find the three uncovered error-handling branches, and add tests until the annotated report shows 100% coverage. ## Quick Start Run pytest coverage on my module, show me which lines are missing tests, and help me write tests until coverage reaches 100%.