jenkins_get_coverage_lines
Extract code coverage lines for a specific file in Jenkins CI/CD pipelines. Inputs include app name, build number, and file path to generate detailed coverage insights.
Instructions
Obtener líneas de cobertura de un archivo específico
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app | Yes | Nombre de la aplicación | |
branch | No | Rama de Git (por defecto: main) | |
buildNumber | Yes | Número del build | |
path | Yes | Ruta del archivo |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"app": {
"description": "Nombre de la aplicación",
"type": "string"
},
"branch": {
"description": "Rama de Git (por defecto: main)",
"type": "string"
},
"buildNumber": {
"description": "Número del build",
"type": "number"
},
"path": {
"description": "Ruta del archivo",
"type": "string"
}
},
"required": [
"app",
"buildNumber",
"path"
],
"type": "object"
}