Jenkinsfile: use mergeJunitResults() (#38315)

This commit is contained in:
Benjamin Dauvergne 2019-12-09 15:37:45 +01:00
parent 5be7a36833
commit 58ff63572d
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

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

View File

@ -9,7 +9,7 @@ usedevelop =
setenv =
DJANGO_SETTINGS_MODULE=chrono.settings
CHRONO_SETTINGS_FILE=tests/settings.py
coverage: COVERAGE=--junitxml=test_results.xml --cov-report xml --cov-report html --cov=chrono/
coverage: COVERAGE=--junitxml=junit-{envname}.xml --cov-report xml --cov-report html --cov=chrono/
deps =
pytest-cov
pytest-django