added report results stage that includes the step to publish the

simplecov results to Jenkins
pull/17/head
Adam Townsend 2023-10-07 09:03:39 -07:00
parent 0f0838ae5a
commit 02e95ae916
1 changed files with 11 additions and 0 deletions

11
Jenkinsfile vendored
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'])
}
}
}
}