Jenkins: Use modern coverage step
This commit is contained in:
parent
bafe3ecb31
commit
25549a36ab
2 changed files with 6 additions and 10 deletions
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
|
@ -55,10 +55,8 @@ pys.each { py ->
|
|||
def buildVer = findFiles(glob: 'dist/*.tar.gz')[0].name.replaceFirst(/\.tar\.gz$/, '')
|
||||
currentBuild.description = buildVer
|
||||
|
||||
publishCoverage calculateDiffForChangeRequests: true,
|
||||
sourceFileResolver: sourceFiles('STORE_LAST_BUILD'),
|
||||
adapters: [
|
||||
coberturaAdapter('.tox/reports/*/coverage.xml')
|
||||
recordCoverage sourceCodeEncoding: 'UTF-8', tools: [
|
||||
[parser: 'COBERTURA', pattern: '.tox/reports/*/coverage.xml']
|
||||
]
|
||||
|
||||
recordIssues sourceCodeEncoding: 'UTF-8',
|
||||
|
|
6
tests/modules/Jenkinsfile
vendored
6
tests/modules/Jenkinsfile
vendored
|
@ -16,10 +16,8 @@ node {
|
|||
|
||||
stage('Report') {
|
||||
junit 'junit.xml'
|
||||
publishCoverage calculateDiffForChangeRequests: true,
|
||||
sourceFileResolver: sourceFiles('STORE_LAST_BUILD'),
|
||||
adapters: [
|
||||
coberturaAdapter('coverage.xml')
|
||||
recordCoverage sourceCodeEncoding: 'UTF-8', tools: [
|
||||
[parser: 'COBERTURA', pattern: 'coverage.xml']
|
||||
]
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue