From 54f8a53e2d81230b8da2877b5aa9c0ba7cc7dcb0 Mon Sep 17 00:00:00 2001 From: chacha Date: Sat, 12 Oct 2024 16:44:20 +0200 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3a78edf..26b614c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -184,7 +184,7 @@ pipeline { sh("virtualenv --pip=embed --setuptools=embed --wheel=embed --no-periodic-update --activators bash,python TOOLS_ENV") sh(". ~/BUILD_ENV/bin/activate && pip install --upgrade setuptools build pip") - sh(". ~/BUILD_ENV/bin/activate && pip install --upgrade 'copier==8.*' jinja2-slug toml") + sh(". ~/BUILD_ENV/bin/activate && pip install --upgrade 'copier==9.*' jinja2-slug toml") sh(". ~/TEST_ENV/bin/activate && pip install --upgrade pip") @@ -546,7 +546,7 @@ pipeline { dir("gitrepo") { junit 'helpers-results/cl_unit_test/*.xml' // using cobertura format (= coverage xml format) - publishCoverage adapters: [cobertura(mergeToOneReport: true, path: "helpers-results/cl_unit_test_coverage/test_coverage.xml")] + recordCoverage(tools: [[parser: 'COBERTURA', pattern: 'helpers-results/cl_unit_test_coverage/test_coverage.xml']]) publishHTML([ reportDir: "helpers-results/cl_unit_test_coverage", reportFiles: "index.html",