remove_tests_from_test_set
Remove specific tests from an existing test set in Xray test management to maintain accurate test coverage and organization.
Instructions
Remove tests from an existing test set
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| testIssueIds | Yes | Array of test issue IDs to remove | |
| testSetIssueId | Yes | The test set issue ID (not key) |
Input Schema (JSON Schema)
{
"properties": {
"testIssueIds": {
"description": "Array of test issue IDs to remove",
"items": {
"type": "string"
},
"type": "array"
},
"testSetIssueId": {
"description": "The test set issue ID (not key)",
"type": "string"
}
},
"required": [
"testSetIssueId",
"testIssueIds"
],
"type": "object"
}