Added publishing of coverage results

This commit is contained in:
Harrison Deng 2025-01-09 15:55:39 +00:00
parent 42bcfcf61d
commit 8febfad282

1
Jenkinsfile vendored
View File

@ -16,6 +16,7 @@ pipeline {
steps {
sh returnStatus: true, script: "python -m pytest --junitxml=test_results.xml --cov=. --cov-report xml:coverage.xml"
xunit checksName: '', tools: [JUnit(excludesPattern: '', pattern: 'test_results.xml', stopProcessingIfError: true)]
recordCoverage(tools: [[parser: 'COBERTURA', pattern: './coverage.xml']])
}
}
stage("build") {