| name | flaky-detection |
| description | Detect and analyze flaky tests that fail intermittently. Use this skill when a test fails unexpectedly, the user asks about flaky tests, or test results are inconsistent. |
Flaky Test Detection
This skill identifies and analyzes flaky tests - tests that pass and fail intermittently without code changes.
When to Use
- Test fails unexpectedly after passing previously
- User asks "is this test flaky?"
- User asks "why does this test fail sometimes?"
- Test results are inconsistent across runs
- User wants to identify unreliable tests
How It Works
- Query test execution history for the failing test
- Analyze pass/fail patterns over time
- Identify flakiness indicators:
- Timing-dependent failures
- Race conditions
- External dependencies
- Resource contention
- Calculate flakiness score
- Suggest remediation strategies
Implementation
Use the following Argus MCP tools:
-
argus_quality_stats - Get test quality metrics and flakiness scores
- Input:
{ "project_id": "<project>", "test_id": "<test>" }
- Returns: Flakiness score, failure patterns, execution history
-
argus_healing_patterns - Find common fix patterns for flaky tests
- Input:
{ "failure_type": "flaky", "test_id": "<test>" }
- Returns: Suggested fixes based on similar resolved issues
Output Format
Flakiness Analysis
| Test | Flakiness Score | Pattern | Suggested Fix |
|---|
| test_async_upload | ๐ด 0.73 | Timing | Add explicit wait for upload completion |
| test_db_connection | ๐ก 0.45 | Resource | Use connection pooling |
| test_api_response | ๐ข 0.12 | None | Likely not flaky |
Flakiness Indicators
- Timing Issues: Test depends on async operations without proper waits
- Race Conditions: Multiple threads/processes competing for resources
- External Dependencies: Network, databases, or third-party services
- State Leakage: Previous tests affecting current test state
Remediation Steps
- Add explicit waits/retries for async operations
- Isolate test state with fixtures
- Mock external dependencies
- Use deterministic test data