Tweaks to html report

This commit is contained in:
Jamie Curnow
2023-07-27 15:44:30 +10:00
parent 4ec1b4ed5a
commit 3379f3a665
2 changed files with 7 additions and 7 deletions

8
Jenkinsfile vendored
View File

@ -87,11 +87,11 @@ pipeline {
archiveArtifacts allowEmptyArchive: false, artifacts: 'bin/*'
publishHTML([
allowMissing: false,
alwaysLinkToLastBuild: true,
alwaysLinkToLastBuild: false,
keepAll: false,
reportDir: 'backend-coverage',
reportFiles: 'index.html',
reportName: 'Backend Coverage',
reportDir: 'html-reports',
reportFiles: 'backend-coverage.html',
reportName: 'HTML Reports',
useWrapperFileDirectly: true
])
}