O Diagnosticador de Teste Flaky: Transforme Falhas Intermitentes de CI em Hipóteses de Causa Raiz Ranqueadas

Porque é que este prompt importa
Flaky tests that get ignored quietly erode trust in the entire suite: engineers start re-running failed CI jobs by reflex instead of reading why they failed, which means a genuine regression can slip through disguised as 'oh, that test is just flaky.' Teams that let flaky tests accumulate past a small fraction of the suite typically see their mean time to detect real production bugs get significantly worse, because the signal-to-noise ratio of CI failures has collapsed.
Para que o usamos
You're a backend engineer and your team's CI pipeline has a test that fails about 1 in 15 runs with no code changes. Nobody wants to spend a sprint chasing it, so it's been ignored for three weeks -- and now two more tests in the same suite are starting to flake too.
Prompt
Act as a senior test infrastructure engineer who specializes in diagnosing intermittent, non-deterministic CI test failures ("flaky tests").
CONTEXT:
- Test name / file: [TEST NAME OR FILE PATH]
- Test framework and language: [e.g. "pytest, Python" or "Jest, TypeScript"]
- Failure frequency: [e.g. "1 in 15 runs" or "roughly once a week, no clear pattern"]
- Failure logs from 3-5 recent failed runs (paste full stack traces / error output, not summaries): [PASTE FAILURE LOGS HERE, SEPARATED BY RUN]
- Recent changes to the test or the code it covers, if known: [DESCRIBE OR PASTE RELEVANT DIFF, OR WRITE "NONE KNOWN"]
- What the test is actually verifying (in plain English): [ONE-SENTENCE DESCRIPTION OF TEST INTENT]
TASK:
Analyze the failure patterns across the provided logs and produce ranked root-cause hypotheses. Consider these common flaky-test categories and rule each in or out based on the evidence: timing/race conditions, shared state or test pollution from other tests, external dependency instability (network, third-party API, database), resource exhaustion (memory, connection pool, file handles), non-deterministic test ordering, and environment differences between CI and local runs.
CONSTRAINTS:
- Do not simply conclude "the test is flaky" without committing to at least 2 specific, falsifiable hypotheses ranked by likelihood
- Every hypothesis must cite specific evidence from the pasted logs -- if the logs don't support a hypothesis, don't include it
- Clearly distinguish between issues safe to quarantine now and investigate later, versus issues that likely mask a real production bug and must be fixed before quarantining
- If the provided logs don't contain enough information to diagnose confidently, say exactly that, and specify precisely what additional logging or instrumentation to add before the next failure
OUTPUT FORMAT:
1. A ranked table: Hypothesis | Confidence (High/Medium/Low) | Evidence From Logs | Suggested Fix
2. A single recommended immediate action: Quarantine and Investigate Later / Must Fix Before Quarantining / Needs More Data First
3. If "Needs More Data First": the exact logging statements or CI configuration change to add so the next failure captures what's missingResultado
Diagnosis: test_checkout_confirms_payment_status (pytest, Python)
Failure frequency: ~1 in 12 CI runs, no clear time-of-day pattern.
| Hypothesis | Confidence | Evidence From Logs | Suggested Fix |
|---|---|---|---|
| Race condition between async payment webhook handler and the assertion checking order status | High | All 3 failed runs show the assertion firing at order.status == 'pending' rather than 'confirmed' -- the webhook handler logs show it completing 40-180ms AFTER the assertion ran in 2 of 3 failures | Replace the fixed 100ms sleep before the assertion with an explicit poll-until-status-or-timeout helper (max 2s), and add a log line at the exact moment the webhook handler acquires its DB lock |
| Shared test database state from a preceding test in the same suite | Medium | One failure log shows an order ID that doesn't match the expected sequence, suggesting a prior test's order wasn't cleaned up -- but this only appears in 1 of 3 logs, so it's a contributing factor, not the primary cause | Add explicit teardown assertion verifying zero leftover orders before this test starts; run this test in isolation for 20 iterations to confirm whether it still flakes without the suite context |
| Third-party payment sandbox API latency spike | Low | No log evidence of elevated response times from the payment sandbox in any of the 3 failures -- ruled out based on available data | N/A -- not supported by current evidence |
Recommended Immediate Action: Must Fix Before Quarantining
This is not safe to quarantine. The race condition hypothesis is high-confidence and points to a genuine bug: the webhook handler and the test assertion have no synchronization mechanism between them, which means the SAME race condition could cause a real customer to see a stale "pending" payment status in production under load. Quarantining this test would hide a real timing bug, not just a test artifact. Fix the polling logic first; if the test still flakes after that fix, investigate the shared-state hypothesis as the secondary cause.
Toda equipe de engenharia acumula testes flaky, e toda equipe desenvolve o mesmo mau hábito em resposta: alguém aperta re-run, o teste passa na segunda vez, e todos seguem em frente sem nunca descobrir por que falhou na primeira. Esse hábito é corrosivo. Assim que uma equipe começa a tratar falhas de CI como ruído por padrão, uma regressão genuína acaba se escondendo dentro desse ruído e vai para produção.
Este prompt impõe uma disciplina diferente. Em vez de aceitar um diagnóstico vago "é flaky", ele exige que o modelo leia logs de falha reais de várias execuções e se comprometa com pelo menos duas hipóteses falsificáveis específicas — ranqueadas por confiança, cada uma apoiada por uma linha específica de evidência dos logs em vez de um palpite genérico. As causas raiz mais comuns são condições de corrida (Race Conditions), estado compartilhado de testes, instabilidade de dependências externas, exaustão de recursos e deriva de ambiente entre CI e local; o prompt percorre cada uma sistematicamente em vez de pular para a que parece mais familiar.
A parte mais útil da saída é o veredito que a maioria das equipes pula completamente: é seguro colocar isso em quarentena e revisitar depois, ou a instabilidade revela na verdade um bug real que poderia afetar a produção nas mesmas condições? Uma condição de corrida entre um manipulador de Webhook assíncrono e uma verificação de status, por exemplo, não é apenas um problema de teste — é o mesmo bug que um cliente real poderia encontrar sob carga. Colocar esse teste em quarentena esconderia um problema de produção atrás de uma marca verde. Acertar essa distinção, toda vez, é o que separa equipes com um sinal de CI confiável daquelas que silenciosamente pararam de confiar em seu próprio conjunto de testes.