From c3fd929f1d070117c263183a9029370520decc0f Mon Sep 17 00:00:00 2001 From: Alberto Miranda Date: Mon, 4 Jul 2022 08:48:05 +0200 Subject: [PATCH] Fix CI generation of Cobertura report --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4c5f83afe..91c89149a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -302,7 +302,9 @@ coverage: --build-dir ${BUILD_PATH} artifacts: reports: - cobertura: ${BUILD_PATH}/.coverage/coverage-cobertura.xml + coverage_report: + coverage_format: cobertura + path: ${BUILD_PATH}/.coverage/coverage-cobertura.xml paths: - ${BUILD_PATH}/.coverage expire_in: 2 weeks -- GitLab