Classify flakiness with high confidence
- Know a test is genuinely flaky, not just failing — a fail-then-pass on retry inside one task execution is recorded
FLAKY, classified by same-environment retry rather than VCS heuristics. - Capture the signal from any retry source — the Develocity Test Retry plugin, Maven Surefire/Failsafe, Bazel, and sbt all feed the same
FLAKYclassification, however the retry was produced. - Retries don't fire when the IDE runs tests with its own runner — so debugging locally surfaces the real failure rather than a retry-masked pass.
- Stop retry from hiding flakiness by failing the build on any flaky outcome, the discipline Gradle and Spring Boot adopted internally to force a fix.





