Fix Code coverage collection?
Gitea - aviat/banker/pipeline/head This commit looks good Details

This commit is contained in:
Timothy Warren 2021-02-05 16:52:40 -05:00
parent dec0eaebe8
commit adb40903ae
1 changed files with 7 additions and 9 deletions

16
Jenkinsfile vendored
View File

@ -40,15 +40,13 @@ pipeline {
}
post {
success {
steps {
sh 'php composer.phar run-script coverage'
step([
$class: 'CloverPublisher',
cloverReportDir: '',
cloverReportFileName: 'build/logs/clover.xml',
])
junit 'build/logs/junit.xml'
}
sh 'php composer.phar run-script coverage'
step([
$class: 'CloverPublisher',
cloverReportDir: '',
cloverReportFileName: 'build/logs/clover.xml',
])
junit 'build/logs/junit.xml'
}
}
}