Projet

Général

Profil

0001-Jenkinsfile-use-mergeJunitResults-38316.patch

Benjamin Dauvergne, 09 décembre 2019 15:40

Télécharger (1,26 ko)

Voir les différences:

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

 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
11 11
        pg: DB_ENGINE=postgresql_psycopg2
12 12
        DJANGO_SETTINGS_MODULE=fargo.settings
13 13
        FARGO_SETTINGS_FILE=tests/settings.py
14
        coverage: COVERAGE=--junitxml=test_results.xml --random --cov-report xml --cov-report html --cov=fargo/
14
        coverage: COVERAGE=--junitxml=junit-{envname}.xml --random --cov-report xml --cov-report html --cov=fargo/
15 15
deps =
16 16
        pytest>=3.3.0,<4.1
17 17
        pg: psycopg2
18
-