list_muted_tests
Retrieve a list of muted tests from TeamCity with filtering options by project, build configuration, or test name, supporting pagination for large result sets.
Instructions
List muted tests (supports pagination)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| all | No | Fetch all pages up to maxPages | |
| buildTypeId | No | Filter by build configuration ID via locator helper | |
| fields | No | Optional fields selector for server-side projection | |
| locator | No | Optional mute locator to filter results | |
| maxPages | No | Max pages to fetch (when all=true) | |
| pageSize | No | Items per page (default 100) | |
| projectId | No | Filter by project ID via locator helper | |
| testNameId | No | Filter by test name ID via locator helper |
Input Schema (JSON Schema)
{
"properties": {
"all": {
"description": "Fetch all pages up to maxPages",
"type": "boolean"
},
"buildTypeId": {
"description": "Filter by build configuration ID via locator helper",
"type": "string"
},
"fields": {
"description": "Optional fields selector for server-side projection",
"type": "string"
},
"locator": {
"description": "Optional mute locator to filter results",
"type": "string"
},
"maxPages": {
"description": "Max pages to fetch (when all=true)",
"type": "number"
},
"pageSize": {
"description": "Items per page (default 100)",
"type": "number"
},
"projectId": {
"description": "Filter by project ID via locator helper",
"type": "string"
},
"testNameId": {
"description": "Filter by test name ID via locator helper",
"type": "string"
}
},
"type": "object"
}