Merge pull request 'simplecov-jenkins-output' (#17) from simplecov-jenkins-output into master

Reviewed-on: #17
This commit was merged in pull request #17.
This commit is contained in:
2023-10-07 09:27:01 -07:00
Vendored
+13
View File
@@ -28,5 +28,18 @@ pipeline {
sh 'cucumber'
}
}
stage('Report results') {
steps {
archive(includes: 'pkg/*.gem')
publishHTML (target: [
allowMissing: false,
alwaysLinkToLastBuild: false,
keepAll: true,
reportDir: 'coverage',
reportFiles: 'index.html',
reportName: 'Test Results',
reportTitles: 'Test Coverage'])
}
}
}
}