Skip to content

jenkinsci/scoverage-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Scoverage Jenkins Plugin

This plugin allows you to publish scoverage results in Jenkins as a trend graph.

Configuration

Freestyle

  1. Enable "Publish Scoverage Report" in Post-build Actions.
  2. Specify the location where the scoverage.xml report is generated (e.g. target/scala-2.10/scoverage-report, scoverage.xml).

Pipeline

step([$class: 'ScoveragePublisher', reportDir: 'target/scala-2.11/scoverage-report', reportFile: 'scoverage.xml'])

Example