get_pipeline_test_summary
Retrieve a lightweight test summary for GitLab merge requests showing pass/fail counts per test suite. Use for quick status checks without loading full test reports.
Instructions
Get test summary for a merge request - a lightweight overview showing pass/fail counts per test suite. Faster than full test report. Great for quick status checks.
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"
}