get_run
Retrieve a specific test run by providing a project code and run ID, with optional inclusion of test cases, for streamlined test management on the QASE MCP Server.
Instructions
Get a specific test run
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | ||
id | Yes | ||
include | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"code": {
"type": "string"
},
"id": {
"type": "number"
},
"include": {
"enum": [
"cases"
],
"type": "string"
}
},
"required": [
"code",
"id"
],
"type": "object"
}