list_test_failures
Retrieve and analyze test failures from TeamCity builds to identify issues and debug CI/CD pipeline problems efficiently.
Instructions
List test failures for a build (supports pagination)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| all | No | Fetch all pages up to maxPages | |
| buildId | Yes | Build ID | |
| fields | No | Optional fields selector for server-side projection | |
| maxPages | No | Max pages to fetch (when all=true) | |
| pageSize | No | Items per page (default 100) |
Input Schema (JSON Schema)
{
"properties": {
"all": {
"description": "Fetch all pages up to maxPages",
"type": "boolean"
},
"buildId": {
"description": "Build ID",
"type": "string"
},
"fields": {
"description": "Optional fields selector for server-side projection",
"type": "string"
},
"maxPages": {
"description": "Max pages to fetch (when all=true)",
"type": "number"
},
"pageSize": {
"description": "Items per page (default 100)",
"type": "number"
}
},
"required": [
"buildId"
],
"type": "object"
}