get_merge_request_test_report
Retrieve structured test reports for GitLab merge requests to identify test failures, error messages, and stack traces for debugging purposes.
Instructions
Get structured test report for a merge request with specific test failures, error messages, and stack traces. Shows the same test data visible on the GitLab MR page. Best for debugging test failures.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| merge_request_iid | Yes | Internal ID of the merge request |
Input Schema (JSON Schema)
{
"properties": {
"merge_request_iid": {
"description": "Internal ID of the merge request",
"minimum": 1,
"type": "integer"
}
},
"required": [
"merge_request_iid"
],
"type": "object"
}