Jenkinsfile: use mergeJunitResults() (#38317)

This commit is contained in:
Benjamin Dauvergne 2019-12-09 15:41:13 +01:00
parent 1c810c703b
commit d7231c9002
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -16,7 +16,7 @@ pipeline {
utils.publish_coverage_native('index.html')
utils.publish_pylint('pylint.out')
}
junit '*_results.xml'
mergeJunitResults()
}
}
}

View File

@ -27,4 +27,4 @@ deps =
git+https://git.entrouvert.org/debian/django-ckeditor.git
commands =
django111: ./pylint.sh welco/
django111: py.test {posargs: --junitxml=test_{envname}_results.xml --cov-report xml --cov-report html --cov=welco/ tests/}
django111: py.test {posargs: --junitxml=junit-{envname}.xml --cov-report xml --cov-report html --cov=welco/ tests/}