Projet

Général

Profil

0001-Jenkinsfile-use-mergeJunitResults-38312.patch

Benjamin Dauvergne, 09 décembre 2019 15:33

Télécharger (1,11 ko)

Voir les différences:

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

 Jenkinsfile | 2 +-
 tox.ini     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
Jenkinsfile
16 16
                        utils.publish_coverage_native('index.html')
17 17
                        utils.publish_pylint('pylint.out')
18 18
                    }
19
                    junit '*_results.xml'
19
                    mergeJunitResults()
20 20
                }
21 21
            }
22 22
        }
tox.ini
34 34
  py3: ./getlasso3.sh
35 35
  py2: ./get_wcs.sh
36 36
  python manage.py compilemessages
37
  py.test {env:COVERAGE:} {posargs: --junitxml=test_{envname}_results.xml tests/}
37
  py.test {env:COVERAGE:} {posargs: --junitxml=junit-{envname}.xml tests/}
38 38
  pylint: ./pylint.sh combo/
39
-