test-coverage-targeter
Builds a "what to test next" recommendation by combining a coverage report (LCOV / Cobertura / coverage.py JSON / Jest JSON / JaCoCo XML) with the PR's `git diff`, ranking uncovered branches by risk × cost - risk weighted by McCabe cyclomatic complexity and code-churn frequency, cost weighted by the unit-test pyramid layer (unit tests cheaper than integration than E2E). Also carries the coverage debt ledger: a weekly per-file drift report over N historical main runs flagging `falling` (line% slid >M pp from peak), `stale` (flat coverage + high churn), and `orphan` (lost last covering test) files, whose rows feed the same targeting. Emits a prioritized list with concrete file:line targets and the test layer recommended for each. Use when a team has the budget to write 5 - 10 new tests and needs help picking which uncovered code to target first instead of blindly chasing 100% coverage, or when specific modules are eroding silently while whole-repo coverage looks fine.
Install with skills.sh (any agent)
npx skills add testland/qa --skill test-coverage-targetertest-coverage-targeter
Overview
100% coverage isn't the goal; risk-adjusted coverage is. A 50-line uncovered helper that hasn't been changed in 4 years is lower priority than a 10-line uncovered branch on a payment-handling function that gets edited every week.
This skill builds a ranked list of uncovered branches, scoring each by:
The output is 5 - 10 specific test targets the team can take in one PR - not a 200-line "everything uncovered" dump.
When to use
Step 1 - Inputs
Two required + two optional inputs:
| Input | Required | Source |
|---|---|---|
| Coverage report | ✓ | LCOV / Cobertura / Jest JSON / coverage.py JSON / JaCoCo XML |
| Source tree | ✓ | Project root checkout |
git log history | opt | For churn weighting (Step 3). |
| PR diff | opt | For PR-touch weighting (Step 4). |
Step 2 - Extract uncovered branches
The shape (after parsing per upstream parser):
{
'path': 'src/checkout/cart.ts',
'uncovered_branches': [
{ 'line': 42, 'condition': 'if (item.stock < quantity)', 'arms_uncovered': 1, 'arms_total': 2 },
{ 'line': 78, 'condition': 'switch (status)', 'arms_uncovered': 3, 'arms_total': 5 },
],
'uncovered_lines': [33, 34, 35, 92, 93],
'covered_pct': 65.4,
}Per language tool:
Step 3 - Compute the risk weight
def risk_weight(file_path, branch):
cyclomatic = mccabe_complexity(file_path, branch.line)
churn = git_churn(file_path, days=90)
return (
normalize(cyclomatic, 1, 20) * 0.5 # 50% complexity weight
+ normalize(churn, 0, 50) * 0.5 # 50% churn weight
)McCabe cyclomatic complexity
Per cyclomatic (opens in new window): McCabe's formula is M = E - N + 2 (edges − nodes + 2). The threshold convention:
"1 - 10: Simple procedure, little risk" "11 - 20: More complex, moderate risk" "21 - 50: Complex, high risk" ">50: Untestable code, very high risk" (cyclomatic (opens in new window))
Compute via per-language tools:
# Python
radon cc src/ -a
# JavaScript / TypeScript
npx complexity-report src/ -f json
# Java
# JaCoCo's COMPLEXITY counter (already in jacoco.xml per jacoco-analysis)Function with cyclomatic >10 + uncovered branch = strong target.
Git churn
# Commits in the last 90 days touching this file
git log --since='90 days ago' --format= -- src/checkout/cart.ts | wc -lHigh-churn files are where bugs accumulate; uncovered branches in high-churn files are the highest-priority targets.
Per cyclomatic (opens in new window): "reducing the cyclomatic complexity of code is not proven to reduce the number of errors or bugs in that code." Use complexity as a risk indicator, not a goal.
Step 4 - PR-touch boost
If the PR diff (Step 1 optional input) changed a file, boost its risk weight by 1.5×. Newly-edited code is strictly higher regression risk than untouched code.
def pr_boost(file_path, pr_changed_files):
return 1.5 if file_path in pr_changed_files else 1.0
final_risk = risk_weight(...) * pr_boost(...)Step 5 - Cost weight (test pyramid layer)
Per test-pyramid (opens in new window), the canonical layers (Cohn 2009):
| Layer | Cost (relative) | Recommend for |
|---|---|---|
| Unit | 1× | Pure functions, business-logic branches. |
| Service / API | 3× | Cross-module integration, controllers, repos. |
| UI / E2E | 10× | User flows, browser interactions. |
Per test-pyramid (opens in new window): "you should have many more low-level UnitTests than high level BroadStackTests running through a GUI ... UI tests are brittle, expensive to write, and time consuming to run."
The targeter classifies each candidate branch by file path heuristic:
def layer(path):
if any(s in path for s in ['/components/', '/views/', '/pages/', '/e2e/']):
return 'ui-or-e2e'
if any(s in path for s in ['/api/', '/routes/', '/controllers/', '/services/']):
return 'service'
return 'unit'Step 6 - Score and rank
COST_BY_LAYER = {'unit': 1, 'service': 3, 'ui-or-e2e': 10}
for candidate in candidates:
candidate['score'] = candidate['risk'] / COST_BY_LAYER[candidate['layer']]
candidates.sort(key=lambda c: c['score'], reverse=True)Score = risk / cost. A unit-layer branch with risk 0.6 (score 0.60) beats a UI-layer branch with risk 0.9 (score 0.09).
Take the top 5 - 10 candidates (configurable). More than 10 is a to-do list, not a recommendation.
Step 7 - Render
## Uncovered branches - recommended targets (top 7)
This PR adds 12 uncovered branches in code touched by the PR. The
prioritized list focuses test budget on high-risk × low-cost
targets per the [test pyramid][tp].
| # | File | Line | Branch | Layer | Risk | Recommendation |
|---|-------------------------------------|-----:|-------------------------------------|-------|-----:|----------------|
| 1 | `src/checkout/promo.ts` | 42 | `if (codeIsValid && !expired)` | unit | 0.91 | Add a unit test for the expired-code path. |
| 2 | `src/checkout/promo.ts` | 78 | `switch (codeType)` arm `'BOGO'` | unit | 0.85 | Add a unit test per arm; BOGO arm uncovered. |
| 3 | `src/api/payments.ts` | 134 | `if (provider === 'stripe')` | service | 0.82 | Add an integration test for the stripe path. |
| 4 | `src/checkout/cart.ts` | 21 | `if (item.stock < quantity)` | unit | 0.78 | Add a unit test for stock-shortfall edge case. |
| 5 | `src/api/payments.ts` | 200 | `try / catch` (catch arm) | service | 0.65 | Add a test that triggers the failure path. |
| 6 | `src/components/CheckoutModal.tsx` | 88 | `if (showPromoBanner)` | unit | 0.55 | Add a snapshot/component test for the banner-hidden case. |
| 7 | `src/api/orders.ts` | 156 | `if (status === 'fulfilled')` | service | 0.48 | Add an integration test for the fulfilled-status path. |
### Skipped (low score)
5 candidates skipped - see `coverage-targets.json` for the full
list. Highest-risk skipped: UI-layer test that would catch a 0.9
risk branch but cost 10× a unit test (score 0.09).
### Approach
For each target above, the recommended test shape:
- **Unit (5)**: Add a per-branch test in the existing `*.spec.ts`;
use `expect.fail` if no path triggers the branch yet.
- **Service (2)**: Use `testcontainers`
to bring up a real Postgres + the Stripe sandbox; assert the
branch outcome.Step 8 - Wire into CI as advisory
This skill is advisory, not gating. Post the recommendation as a PR comment via coverage-diff-reporter's sticky-comment mechanism (see coverage-diff-reporter Step 7) but don't fail the build on it:
- name: Generate coverage targets
if: github.event_name == 'pull_request'
run: |
python scripts/coverage_targets.py \
--coverage current.json \
--diff <(git diff --name-only origin/${{ github.base_ref }}...HEAD) \
--top 7 \
> targets.md
- name: Post sticky comment
uses: marocchino/sticky-pull-request-comment@v2
with:
header: coverage-targets
path: targets.mdCoverage debt ledger (drift over time)
Aggregate coverage hides per-file decay: a repo can sit at 82% overall while the payment module slides from 95% to 60% across 30 PRs, none of which crossed a gate threshold. The debt ledger is the weekly, informational (never gating) companion to the per-PR targeting above - it walks a rolling window of persisted coverage history and flags files on three axes:
| Axis | Signal |
|---|---|
| Falling | line% (or branch%) dropped >M pp (default 5) from its window peak. |
| Stale | Coverage flat (<1pp variance) while churn is high (≥10 commits / 90 days). |
| Orphan | Lost its last covering test (every covering test was deleted). |
Mechanics:
peak = max(pct for _, _, pct in series) # over the last ~30 runs
drop = peak - series[-1][2]
if drop >= 5.0: # FALL_THRESHOLD_PP
flag('falling', path, peak, drop)Each ledger row then feeds the targeting workflow above: the falling / orphan file becomes the Step 1 input, and Steps 2-7 turn it into specific file:line test targets.
Anti-patterns
| Anti-pattern | Why it fails | Fix |
|---|---|---|
| Recommending coverage targets without considering test layer | Suggests UI tests for branches that should be unit-tested; cost ignored. | Score = risk / cost (Step 6). |
| Listing every uncovered branch | 200-row list; team ignores. | Top 5 - 10 (Step 6). |
| Pure-coverage chase (every uncovered line is a target) | Hits 100% by writing low-value tests; signal-to-noise collapses. | Risk-weight by complexity + churn (Step 3). |
| Treating cyclomatic complexity as a goal | Per cyclomatic (opens in new window): reducing complexity isn't proven to reduce defects. | Use complexity as a risk indicator only (Step 3). |
| Ignoring PR-changed files | A new function added in the PR with 0 coverage isn't surfaced. | PR-touch boost (Step 4). |
Recommending tests for code marked # pragma: no cover / istanbul ignore | The team explicitly excluded that code. | Skip files / lines with explicit ignores. |
| Blocking the build on the recommendation | Recommendation is opinion; gating turns it into bureaucracy. | Advisory comment only (Step 8); the actual gate is lcov-analysis (LCOV or Cobertura). |
Limitations
References
Related skills
allure-reports
Configures Allure Report (test-runner adapter install, `allure-results` directory wiring, `categories.json` for failure classification, `history-trend.json` retention via the copy-history-between-runs pattern), runs the Allure CLI to convert `allure-results` to a static HTML site, and uploads the report as a CI artifact. Use when the team needs richer test reporting than JUnit XML - step-level attachments, per-test history, retry tracking, and severity / epic / feature labeling across framework-agnostic adapters (pytest, Jest, JUnit, TestNG, NUnit, Mocha). As a rich static HTML report generator, it is the open-source alternative to the sunset ExtentReports (JVM/.NET per-test HTML narrative); for hosted cross-run flakiness analytics rather than a static per-run report use currents-integration.
coverage-diff-reporter
Builds a per-PR coverage delta report from any pair of LCOV / Cobertura / JSON coverage outputs (current run + baseline from the merge target) - emits a per-file table with line% / branch% deltas, called-out new files, hidden drops (overall +0.1pp but one file -8pp), and a single-line PR-comment summary. Use when the team has coverage in CI but needs human-readable PR feedback that points at the specific file the reviewer should focus on, not just an aggregate number.
coverage-py-analysis
Configures coverage.py for Python projects - wires `coverage run` (replacing `python` for instrumentation), enables branch coverage via the `--branch` flag or `branch = True` config, manages the `.coverage` data file (single-process and `combine` for parallel pytest-xdist runs), authors `.coveragerc` with `source` / `omit` / `fail_under`, and emits the format the downstream tool needs (`coverage report` for terminal, `coverage xml` for Cobertura, `coverage html` for human review, `coverage lcov` for SaaS, `coverage json` for programmatic post-processing). Use for any Python test stack (pytest, unittest, nose) that needs PR-time coverage signal.
currents-integration
Wires Currents.dev cross-run test analytics into a Playwright suite: installs `@currents/playwright`, authors `currents.config.ts` (env-sourced `recordKey` + `projectId`), registers `currentsReporter()`, enables trace/video/screenshot artifacts, and runs via `npx pwc` so per-test traces stream to the Currents dashboard with over-time flakiness, slowest-test, and pass-rate trends. Use when a Playwright suite needs hosted cross-run suite-health analytics; for a static per-run report use extentreports or allure-reports, and to sync results into TestRail / Xray / Zephyr test management use test-management-sync.
jacoco-analysis
Configures JaCoCo for JVM projects (Java / Kotlin / Scala / Groovy) - wires the runtime agent via `jacoco-maven-plugin` `prepare-agent`, generates per-build reports (HTML / XML / CSV) via the `report` goal, gates the build via the `check` goal with element / limit / minimum rules, parses the six native counters (instructions, branches, lines, methods, classes, cyclomatic complexity), and converts JaCoCo XML to LCOV / Cobertura when downstream tools need a different format. Use when the JVM build is Maven / Gradle and the team wants the canonical JVM coverage tool - or to convert JaCoCo output for cross-language coverage aggregation.
junit-xml-analysis
Explains CI test numbers that disagree with what the suite actually did - a 'slowest tests' list dominated by the wrong suite, a release gate or dashboard reading only the summary attributes on the suite element and never the cases below them, or a pass rate that quietly counts skipped tests as passes. Parses JUnit-format XML (the interchange format Jenkins, GitHub Actions, GitLab, Buildkite, and CircleCI all ingest) into per-suite and per-case metrics tables - passed / failed / errored / skipped, time, classname, message, stack - groups failures by classname for trend analysis, and separates new failures from flakes by cross-referencing the `flakyFailure` and rerun elements. Use when a report, gate, or metric derived from test results cannot be trusted.
lcov-analysis
Parses both mainstream coverage interchange formats: LCOV `.info` text files (produced by gcov, llvm-cov, Coverage.py via `py2lcov`, JaCoCo via `xml2lcov`, Devel::Cover, Jest via `lcov` reporter, NYC, and most others) and Cobertura XML (coverage-04.dtd - emitted by JaCoCo, coverage.py `--xml`, Jest's `cobertura` reporter, coverlet, gocover-cobertura; full parser in references/cobertura.md). Extracts per-file line / function / branch metrics from the canonical record keywords (TN/SF/FN/FNDA/FNF/FNH/BRDA/BRF/BRH/DA/LH/LF), computes the diff vs a baseline, and emits per-file gating verdicts. Use for PR coverage gates that don't depend on a specific language runtime, whichever of the two formats the CI emits.
test-management-sync
Syncs automated test results into test management tools - TestRail (standalone, `add_run` + batched `add_results_for_cases`), Xray for Jira (JWT auth + `/api/v2/import/execution/*`), and Zephyr Scale (Bearer token + `/testexecutions`) - from CI. The body carries the vendor-independent push-results workflow (map tests to case IDs, open a run / execution / cycle per build, batch results back, close on main only, run as an `if: always()` step) with TestRail as the worked example; full vendor specifics live in references/ (testrail.md, xray.md, zephyr.md). Use when automated suites must keep the team's test management view in sync without a human copy-paste step; for hosted cross-run flakiness analytics rather than TCM sync use currents-integration, and for authoring / migrating test CASES rather than pushing results see qa-test-management's tcm-case-management.
test-run-summary-author
Build-an-X workflow that turns a structured test-run artifact (JUnit XML, Allure JSON, TestRail / Xray / Zephyr export) plus optional release context (version, build URL, deploy target) into a narrative markdown summary for release notes, an exec status update, or a stand-up Slack post. Distinct from the per-framework parsers junit-xml-analysis / allure-reports / coverage-diff-reporter, which emit structured tabular reports: this skill takes the same data and writes the human-readable narrative. Use when a manager needs a draft release note or stand-up summary from a single run; for cross-run trend analytics use currents-integration.