get_runs
Retrieve all test runs within a project using specific filters like status, milestone, environment, and date range for efficient test management and tracking.
Instructions
Get all test runs in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | ||
| environment | No | ||
| fromStartTime | No | ||
| include | No | ||
| limit | No | ||
| milestone | No | ||
| offset | No | ||
| search | No | ||
| status | No | ||
| toStartTime | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"code": {
"type": "string"
},
"environment": {
"type": "number"
},
"fromStartTime": {
"type": "number"
},
"include": {
"type": "string"
},
"limit": {
"type": "number"
},
"milestone": {
"type": "number"
},
"offset": {
"type": "number"
},
"search": {
"type": "string"
},
"status": {
"type": "string"
},
"toStartTime": {
"type": "number"
}
},
"required": [
"code"
],
"type": "object"
}