analyze_test_cases_duplicates
Identify duplicate test cases by analyzing step similarity and group them to reduce redundancy in test management systems.
Instructions
๐ Analyze test cases for duplicates and group similar ones by step similarity (80-90%)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | markdown |
include_clickable_links | No | Include clickable links to Zebrunner web UI (markdown format only) | |
include_similarity_matrix | No | Include detailed similarity matrix in output | |
project_key | Yes | Project key (e.g., 'ANDROID', 'IOS') | |
similarity_threshold | No | Similarity threshold percentage (50-100, default: 80) | |
suite_id | No | Optional: Analyze specific test suite ID | |
test_case_keys | No | Optional: Analyze specific test case keys instead of suite |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "markdown",
"description": "Output format",
"enum": [
"dto",
"json",
"string",
"markdown"
],
"type": "string"
},
"include_clickable_links": {
"default": false,
"description": "Include clickable links to Zebrunner web UI (markdown format only)",
"type": "boolean"
},
"include_similarity_matrix": {
"default": false,
"description": "Include detailed similarity matrix in output",
"type": "boolean"
},
"project_key": {
"description": "Project key (e.g., 'ANDROID', 'IOS')",
"minLength": 1,
"type": "string"
},
"similarity_threshold": {
"default": 80,
"description": "Similarity threshold percentage (50-100, default: 80)",
"maximum": 100,
"minimum": 50,
"type": "number"
},
"suite_id": {
"description": "Optional: Analyze specific test suite ID",
"type": "number"
},
"test_case_keys": {
"description": "Optional: Analyze specific test case keys instead of suite",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"project_key"
],
"type": "object"
}