Jenkinsfile: adapt coverage publishing stage to new test envs (#64289)

This commit is contained in:
Paul Marillonnet 2022-04-20 11:38:49 +02:00 committed by Frédéric Péters
parent 671b96294e
commit 1aecb81817
1 changed files with 5 additions and 5 deletions

10
Jenkinsfile vendored
View File

@ -14,15 +14,15 @@ pipeline {
utils = new Utils()
utils.publish_coverage('coverage-*.xml')
utils.publish_coverage_native(
'index.html', 'htmlcov-py3-django22-coverage-authentic', 'Coverage authentic tests')
'index.html', 'htmlcov-py3-django22-drf312-coverage-authentic', 'Coverage authentic tests')
utils.publish_coverage_native(
'index.html', 'htmlcov-py3-django22-coverage-hobo', 'Coverage hobo tests')
'index.html', 'htmlcov-py3-django22-drf312-coverage-hobo', 'Coverage hobo tests')
utils.publish_coverage_native(
'index.html', 'htmlcov-py3-django22-coverage-multipublik', 'Coverage multipublik tests')
'index.html', 'htmlcov-py3-django22-drf312-coverage-multipublik', 'Coverage multipublik tests')
utils.publish_coverage_native(
'index.html', 'htmlcov-py3-django22-coverage-multitenant', 'Coverage multitenant tests')
'index.html', 'htmlcov-py3-django22-drf312-coverage-multitenant', 'Coverage multitenant tests')
utils.publish_coverage_native(
'index.html', 'htmlcov-py3-django22-coverage-passerelle', 'Coverage passerelle tests')
'index.html', 'htmlcov-py3-django22-drf312-coverage-passerelle', 'Coverage passerelle tests')
utils.publish_pylint('pylint.out')
}
mergeJunitResults()