get_test_runs
Retrieve historical test runs from BugBug with filtering by date range, pagination, and sorting options to analyze past test execution data.
Instructions
Get list of historical BugBug test runs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ordering | No | Sort order by start time | |
| page | No | Page number for pagination | |
| pageSize | No | Number of results per page | |
| startedAfter | No | Filter runs started after this datetime (ISO format) | |
| startedBefore | No | Filter runs started before this datetime (ISO format) |
Input Schema (JSON Schema)
{
"properties": {
"ordering": {
"description": "Sort order by start time",
"enum": [
"-started",
"started"
],
"type": "string"
},
"page": {
"description": "Page number for pagination",
"type": "number"
},
"pageSize": {
"description": "Number of results per page",
"type": "number"
},
"startedAfter": {
"description": "Filter runs started after this datetime (ISO format)",
"type": "string"
},
"startedBefore": {
"description": "Filter runs started before this datetime (ISO format)",
"type": "string"
}
},
"type": "object"
}