get_test_execution
Retrieve detailed information about a specific test execution using its unique key, including all associated test runs for comprehensive test management and result tracking.
Instructions
Get details of a specific test execution by key, including all test runs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| testExecutionKey | Yes | The test execution key (e.g., "PROJ-456") |
Input Schema (JSON Schema)
{
"properties": {
"testExecutionKey": {
"description": "The test execution key (e.g., \"PROJ-456\")",
"type": "string"
}
},
"required": [
"testExecutionKey"
],
"type": "object"
}