-
Bug
-
Resolution: Unresolved
-
Minor
-
None
I have a multibranch pipeline in which I am publishing clover coverage report using DSL step below. The coverage reports are generated, but the reports appear in the job run page instead of the branch page for the multibranch job.
Is there some additional parameters needed for the CloverPublisher to indicate at which level the reports should be posted?
step([
$class: 'CloverPublisher',
cloverReportDir: './linuxintegrationcoverage/clover.xml',
cloverReportFileName: 'clover.xml',
healthyTarget: [methodCoverage: 70, conditionalCoverage: 70, statementCoverage: 70],
unhealthyTarget: [methodCoverage: 69, conditionalCoverage: 69, statementCoverage: 69],
failingTarget: [methodCoverage: 50, conditionalCoverage: 50, statementCoverage: 50]
])