ci-failure-triage
Decides what kind of failure a red CI test is before anyone starts fixing it. Extracts seven failure signals from the runner output, stack trace, run history, and environment metadata, then walks an ordered first-match-wins rule set to exactly one verdict: flaky-known, environment-drift, defect, timeout, flaky-pre-incident, or flake-of-unknown-cause. Emits the verdict together with the alternatives that were rejected and the specific condition each one failed, so the triage decision is auditable rather than asserted. Use when a test has just gone red and the next action depends on whether the cause is a product defect, a non-deterministic test, or drifted infrastructure.
Install with skills.sh (any agent)
npx skills add testland/qa --skill ci-failure-triageCI failure triage
One test is red. Before anyone opens a ticket, reruns the job, or edits a line, someone has to answer a prior question: what kind of failure is this? This is the method for answering it, and for writing the answer down in a form a second person can check.
The cost of getting it wrong is measurable. Google reports that about 84% of the pass-to-fail transitions its CI observes involve a flaky test, and that almost 16% of its tests show some level of flakiness (testing.googleblog.com/2016/05/flaky-tests-at-google-and-how-we.html). A triage step that treats every red as a defect files mostly noise; one that treats every red as a flake ships regressions.
What this owns, and what it does not
This owns classification: turning one failed run into one verdict, with the rejected alternatives recorded.
It deliberately does not own:
Terminology
The ISTQB glossary defines error as "a human action that results in a defect" (glossary.istqb.org/en_US/term/error), defect as "an imperfection or deficiency in a work product where it does not meet its requirements or specifications or impairs its intended use" (glossary.istqb.org/en_US/term/defect), and failure as "an event in which a component or system does not meet its requirements within specified limits during its execution" (glossary.istqb.org/en_US/term/failure). A red test is a failure. Whether a defect sits behind it is exactly what this method decides.
The glossary has no entry for "flaky test." Querying the glossary API for flaky-test, flaky, and non-deterministic-test returns 404 in all three cases against glossary.istqb.org; do not cite a flaky-test definition to ISTQB. The canonical definition is Martin Fowler's: "A test is non-deterministic when it passes sometimes and fails sometimes, without any noticeable change in the code, tests, or environment" (martinfowler.com/articles/nonDeterminism.html). Google's operational definition is narrower and worth keeping alongside it: "a test that exhibits both a passing and a failing result with the same code" (testing.googleblog.com).
Test environment is "an environment containing hardware, instrumentation, simulators, software tools, and other support elements needed to perform a test" (glossary.istqb.org/en_US/term/test-environment). The environment-drift verdict below is about that environment changing underneath a test that did not.
Step 1 - Extract the seven signals
Record all seven before applying any rule. A rule that fires on a signal you never extracted is a guess.
| # | Signal | What to record |
|---|---|---|
| S1 | Failure mode | One token from the pattern table below. |
| S2 | Reproducibility window | Pass-to-fail ratio over the last 50 runs; length of the current red streak; the first red commit. |
| S3 | Co-failure pattern | Did other tests fail in the same run? Same suite? Same shard? |
| S4 | Time clustering | Are failures concentrated in one window (a deploy, off-hours, peak load)? |
| S5 | Environment delta | Did the runner image, container tag, or base build hash change inside the failure window? |
| S6 | Change-set proximity | Did files in the test's call graph change inside the window? |
| S7 | Quarantine status | Is the test on a formal quarantine list (an annotation, a decorator, a CI quarantine tag, a checked-in flake list)? |
The 50-run and 7-day windows are practitioner conventions, not values from any standard. Pick windows your history actually covers and state them in the verdict, because every rule below is relative to them.
S1: the failure-mode pattern table
Match in the order listed. The order is by decreasing specificity, and crash signatures come first because a dying process frequently emits a trailing timeout that would otherwise capture the match.
| Mode token | Pattern in the runner output or trace |
|---|---|
runner-crash | SIGSEGV, Segmentation fault, OutOfMemoryError, panic:, an unhandled exception that kills the process. |
assertion-mismatch | Paired expected and actual values. googletest prints Value of: ... / Actual: ... / Expected: ... (google.github.io/googletest/advanced.html); xUnit, Jest, and pytest print equivalent pairs. |
setup-error | A BeforeEach, setUp, @BeforeAll, or fixture frame in the trace. |
selector-breakage | no such element, the W3C WebDriver error for a locator that matches nothing (w3.org/TR/webdriver2/#errors); NoSuchElementException; Playwright's strict mode violation for a locator resolving to the wrong count (playwright.dev/docs/locators). |
environmental | ENOENT, FileNotFoundException, a missing environment variable, connection refused. |
timed-out | Timeout or exceeded N ms with no other exception attached. |
unclassified | None of the above matched. |
timed-out is the mode. timeout is a verdict. They are not the same claim: the mode says the clock ran out, the verdict says the CI infrastructure is why. R3 and R4 below decide between them.
S6: read the diff, do not skim it
Change-set proximity means files on the test's call graph changed inside the window, and you read the change. Google's engineering practices put the obligation plainly for reviewers: read and understand the change before acting on it (google.github.io/eng-practices/review/reviewer/looking-for.html). A diff you only counted commits in does not satisfy S6.
Step 2 - Walk the rules, first match wins
The verdicts are mutually exclusive and single-valued. Evaluate R1 through R6 in order and stop at the first rule whose conditions all hold. A failure with several plausible causes gets the earliest matching verdict, not two verdicts.
R1 - flaky-known
Fires when S7 shows the test on a formal quarantine list and the observed S1 mode matches the flake category already recorded for it.
Next step: rerun, and let the existing quarantine process handle it. No new triage. Fowler's advice is to quarantine non-deterministic tests out of the main pipeline and cap how long they may stay there (martinfowler.com/articles/nonDeterminism.html); R1 only recognises that state, it does not create it.
Informal evidence does not count. A code comment saying "this one sometimes fails" is not a quarantine list. If the project has no detectable quarantine convention, R1 can never fire and you fall through to R2.
R2 - environment-drift
Fires when all hold:
Next step is not a defect ticket. It is a re-pin of the image or an investigation of how the environment is provisioned, routed to whoever owns the CI platform.
An environmental mode with no S5 delta is not drift. The environment did not change; the test depends on state nobody controls. That case falls through to R5 or R6 as a test-isolation problem.
R3 - defect
Fires when all hold:
This is the highest-confidence verdict available, because four independent signals agree. Next step: capture whatever trace or artifact the runner can produce, draft the defect report against the schema the team uses, and lock the reproduction in a committed failing test before anyone edits production code.
R4 - timeout
Fires when S1 is timed-out with no other exception and either:
Next step is a suite time-budget review or runner resource tuning, not a defect ticket. R3 has already claimed the timeouts that have code-change proximity, so anything reaching R4 has none.
R5 - flaky-pre-incident
Fires when all hold:
Those three are the top root-cause categories in the largest published study of flaky-test fixes: of 161 classified fixes drawn from 201 flaky-test commits across 51 Apache projects, 45% were async wait, 20% concurrency, and 12% test order dependency (Luo et al., FSE 2014, mir.cs.illinois.edu/marinov/publications/LuoETAL14FlakyTestsAnalysis.pdf).
This is the "flaking, not yet quarantined" verdict. Next step: pattern attribution, then quarantine if the pattern is confirmed.
R6 - flake-of-unknown-cause
The fallback. Nothing above matched, or S1 came back unclassified. Emit a low-confidence verdict and recommend bisection-style narrowing across run conditions. R6 is an honest answer, and it is a better one than a defect verdict propped up on two of four signals.
Why this order
R2 sits ahead of R3 on purpose. Both can look plausible when a test starts failing after an image bump that also landed near a code change, and routing drift to the defect tracker sends the work to the wrong team while the tracker fills with false positives. Putting the environment check first makes the precedence explicit rather than leaving it to the mode preconditions.
R3 sits ahead of R5 on purpose too: when there is code-change proximity, an async-wait timeout is more likely a product that got slower than a test that got unlucky.
Step 3 - Emit the verdict
One fixed shape. The Not classified as block is mandatory, including when the verdict is high-confidence.
## Failure classification - `<test-id>`
**Verdict:** <flaky-known | environment-drift | defect | timeout | flaky-pre-incident | flake-of-unknown-cause>
**Confidence:** <high | medium | low>
**Windows used:** <e.g. last 50 runs, 7 days of history, N=5 green-run threshold>
**Evidence:**
- <one line per signal that carried the verdict, naming the signal (S1..S7) and the observed value>
**Recommended next step:**
1. <action>
2. <action>
**Not classified as:**
- `<verdict>` - <the specific condition that failed, with the observed value>
- `<verdict>` - <the specific condition that failed, with the observed value>The Not-classified-as block is the load-bearing part
A bare verdict is an assertion. A verdict plus the rejected alternatives and the exact condition each one failed is a decision another person can audit, reopen, and overturn when a signal later turns out to be wrong.
Rules for the block:
Worked example
Failure: tests/cart.spec.ts:42 - adds an item, red on commit e3a91f4.
Signals extracted: S1 assertion-mismatch (expect(cart.count).toBe(1)); S2 12 consecutive green runs before this one, 1 red in the last 50; S3 no co-failures in the run; S4 no clustering; S5 runner image and container tag unchanged; S6 src/cart/addItem.ts modified inside the window, changing validateQty(); S7 not on any quarantine list.
R1 does not fire (S7 empty). R2 does not fire (no S5 delta, and the mode is assertion-mismatch). R3 fires: all four conditions hold.
## Failure classification - `tests/cart.spec.ts:42 - adds an item`
**Verdict:** defect
**Confidence:** high
**Windows used:** last 50 runs, 7 days of history, N=5 green-run threshold
**Evidence:**
- S2: 12 consecutive green runs immediately before this failure, exceeding the N=5 threshold.
- S6: `src/cart/addItem.ts` changed in `e3a91f4..HEAD`, modifying `validateQty()`; diff read.
- S1: `assertion-mismatch` on `expect(cart.count).toBe(1)`, not a timeout and not a network error.
- S2: a rerun of `e3a91f4` in the history reproduced the same failure.
**Recommended next step:**
1. Capture the runner's trace artifact for the failing run if one was not retained.
2. Draft the defect report against the team's bug schema, using the verbatim assertion as the actual value.
3. Lock the reproduction in a committed failing test before changing production code.
4. Route to the team that owns `src/cart/`.
**Not classified as:**
- `flaky-known` - S7 found no quarantine annotation, decorator, or flake-list entry for this test.
- `environment-drift` - S5 shows runner image and container tag unchanged across the window, and the mode is `assertion-mismatch`, which R2 excludes.
- `timeout` - S1 is `assertion-mismatch`, not `timed-out`.
- `flaky-pre-incident` - S2 shows a clean 12-run green streak, so the failure is not intermittent, and S6 shows change-set proximity, which R3 claims first.
- `flake-of-unknown-cause` - not reached; R3 matched.Anti-patterns
| Anti-pattern | Why it fails | Fix |
|---|---|---|
| Calling every async-wait timeout a flake | Some are real: the new code path made the product slower. | R3 outranks R5 whenever S6 shows change-set proximity. |
Calling any test that ever flaked flaky-known | Conflates a formally quarantined test with one that is merely intermittent, and hides the second class entirely. | R1 fires only on a structured quarantine artifact. |
| Inferring quarantine status from comments | "This test sometimes fails" in a comment is noise, not a decision anyone made. | S7 counts annotations, decorators, CI tags, and checked-in lists only. |
| Verdict on a single failure with no history | One data point cannot separate a flake from a defect. | Without S2, R3 and R5 cannot be evaluated at all; say so and mark confidence low rather than picking. |
Classifying environment-drift as defect because the test is red | Routes to the wrong team and fills the defect tracker with false positives. | R2 is evaluated before R3. |
| Triggering a rerun as part of classifying | Reruns change the evidence you are classifying, and Google notes that automatic reruns train developers to ignore real failures (testing.googleblog.com). | Recommend the rerun in the verdict; do not perform it during triage. |
| Classifying from commit subjects instead of the diff | The hypothesis becomes unfalsifiable, and S6 is unsatisfied. | Read the change (google.github.io/eng-practices), or mark S6 unevaluated. |
| Stacking two verdicts | "Probably a flake and maybe a defect" routes nowhere and nobody owns it. | Single-valued by construction: the earliest matching rule wins. |