testplan_show_test_results_from_build_id
Retrieve detailed test results for a specific build and project in Azure DevOps using the build ID. Simplifies test plan analysis and troubleshooting.
Instructions
Gets a list of test results for a given project and build ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
buildid | Yes | The ID of the build. | |
project | Yes | The unique identifier (ID or name) of the Azure DevOps project. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"buildid": {
"description": "The ID of the build.",
"type": "number"
},
"project": {
"description": "The unique identifier (ID or name) of the Azure DevOps project.",
"type": "string"
}
},
"required": [
"project",
"buildid"
],
"type": "object"
}