added report results stage that includes the step to publish the

simplecov results to Jenkins
This commit is contained in:
2023-10-07 09:03:39 -07:00
parent 0f0838ae5a
commit 02e95ae916
Vendored
+11
View File
@@ -28,5 +28,16 @@ pipeline {
sh 'cucumber'
}
}
stage('Report results') {
steps {
publishHTML (target: [allowMissing: false,
alwaysLinkToLastBuild: true,
keepAlive: true,
reportDir: 'coverage',
reportFiles: 'index.html',
reportName: 'Test Results',
reportTitles: 'Test Coverage'])
}
}
}
}