diff --git a/.ci/Jenkinsfile b/.ci/Jenkinsfile index dd6b180..bc536b7 100644 --- a/.ci/Jenkinsfile +++ b/.ci/Jenkinsfile @@ -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 } }