Projet

Général

Profil

0001-Jenkinsfile-use-mergeJunitResults-38315.patch

Benjamin Dauvergne, 09 décembre 2019 15:38

Télécharger (1,17 ko)

Voir les différences:

Subject: [PATCH] Jenkinsfile: use mergeJunitResults() (#38315)

 Jenkinsfile | 2 +-
 tox.ini     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
Jenkinsfile
15 15
                        utils.publish_coverage_native('index.html')
16 16
                        utils.publish_pylint('pylint.out')
17 17
                    }
18
                    junit '*_results.xml'
18
                    mergeJunitResults()
19 19
                }
20 20
            }
21 21
        }
tox.ini
9 9
setenv =
10 10
  DJANGO_SETTINGS_MODULE=chrono.settings
11 11
  CHRONO_SETTINGS_FILE=tests/settings.py
12
  coverage: COVERAGE=--junitxml=test_results.xml --cov-report xml --cov-report html --cov=chrono/
12
  coverage: COVERAGE=--junitxml=junit-{envname}.xml --cov-report xml --cov-report html --cov=chrono/
13 13
deps =
14 14
  pytest-cov
15 15
  pytest-django
16
-