jenkinsfile: fixed location of html coverage report

This commit is contained in:
Frédéric Péters 2018-04-25 23:07:47 +02:00
parent 07bf600b21
commit 2a9802f132
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -31,7 +31,7 @@ pipeline {
post {
always {
junit 'test_results.xml'
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: '**/htmlcov/', reportFiles: 'index.html', reportName: 'Coverage Report', reportTitles: ''])
publishHTML([allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'htmlcov', reportFiles: 'index.html', reportName: 'Coverage Report', reportTitles: ''])
script {
utils = new Utils()
utils.publish_cobertura_report('**/coverage.xml')