tests: adapt coverage output repositories to tox target names (#40012)

This commit is contained in:
Nicolas Roche 2020-02-21 16:15:14 +01:00
parent 5002ed100e
commit 932e6da8f3
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-coverage-authentic', 'Coverage authentic tests')
'index.html', 'htmlcov-py2-coverage-authentic', 'Coverage authentic tests')
utils.publish_coverage_native(
'index.html', 'htmlcov-coverage-hobo', 'Coverage hobo tests')
'index.html', 'htmlcov-py2-coverage-hobo', 'Coverage hobo tests')
utils.publish_coverage_native(
'index.html', 'htmlcov-coverage-multipublik', 'Coverage multipublik tests')
'index.html', 'htmlcov-py2-coverage-multipublik', 'Coverage multipublik tests')
utils.publish_coverage_native(
'index.html', 'htmlcov-coverage-multitenant', 'Coverage multitenant tests')
'index.html', 'htmlcov-py2-coverage-multitenant', 'Coverage multitenant tests')
utils.publish_coverage_native(
'index.html', 'htmlcov-coverage-passerelle', 'Coverage passerelle tests')
'index.html', 'htmlcov-py2-coverage-passerelle', 'Coverage passerelle tests')
utils.publish_pylint('pylint.out')
}
mergeJunitResults()