Jenkinsfile: use mergeJunitResults() (#38316)

This commit is contained in:
Benjamin Dauvergne 2019-12-09 15:39:54 +01:00
parent 3a8ab342f9
commit 713610a7fb
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

@ -11,7 +11,7 @@ setenv =
pg: DB_ENGINE=postgresql_psycopg2
DJANGO_SETTINGS_MODULE=fargo.settings
FARGO_SETTINGS_FILE=tests/settings.py
coverage: COVERAGE=--junitxml=test_results.xml --random --cov-report xml --cov-report html --cov=fargo/
coverage: COVERAGE=--junitxml=junit-{envname}.xml --random --cov-report xml --cov-report html --cov=fargo/
deps =
pytest>=3.3.0,<4.1
pg: psycopg2