get_consecutive_failures
Retrieve consecutively failing non-flaky tests with last passed and first failed dates to pinpoint the merge that broke them.
Instructions
Get tests that are failing consecutively (broken tests, not flaky). Returns tests where the last 2+ runs have failed, with timing info (last_passed_date, first_failed_date) useful for identifying which merge broke them.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Days to look back (default: 10) | |
| limit | No | Maximum results to return (default: 50) | |
| version | No | Version to filter by (e.g., '12.1.0'). If not provided, uses latest version. | |
| project_id | No | Project ID to filter by (optional) | |
| min_consecutive_failures | No | Minimum number of consecutive failures to include (default: 2) |