Better Tests labeling from Jenkins

This commit is contained in:
Jürgen Edelbluth 2022-08-26 11:55:56 +02:00
parent 725dc359c7
commit 755d8f9276
Signed by: jed
GPG Key ID: 6DEAEDD5CDB646DF
1 changed files with 1 additions and 1 deletions

2
.ci/Jenkinsfile vendored
View File

@ -28,7 +28,7 @@ pipeline {
}
steps {
sh 'poetry run tox -r -e ${PYTHON_VERSION}'
xunit checksName: '', tools: [JUnit(excludesPattern: '', pattern: 'test-reports/*.xml', stopProcessingIfError: true)]
xunit checksName: "Tests ${PYTHON_VERSION}", tools: [JUnit(excludesPattern: '', pattern: 'test-reports/*.xml', stopProcessingIfError: true)]
cobertura autoUpdateStability: false, coberturaReportFile: 'coverage.xml', conditionalCoverageTargets: '70, 0, 0', failUnhealthy: false, failUnstable: false, lineCoverageTargets: '80, 0, 0', maxNumberOfBuilds: 0, methodCoverageTargets: '80, 0, 0', onlyStable: false
}
}