From 9f757f41b62da9819f899fc7c1e82f5428a3a6d7 Mon Sep 17 00:00:00 2001 From: Pierre Verkest Date: Fri, 1 Sep 2023 14:46:25 +0200 Subject: [PATCH] gitlab ci: fix coverage key --- .gitlab-ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ac72502..c539461 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -61,10 +61,12 @@ test: - pytest artifacts: reports: - cobertura: coverage.xml - junit: junit.xml + coverage_report: + coverage_format: cobertura + path: ./coverage.xml + junit: ./junit.xml paths: - - .coverage.test + - ./htmlcov/ needs: [build]