From 153b764d9e5cb1e9ae66eb94adad69859c95c039 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Schr=C3=B6der?= <fschroeder@techfak.uni-bielefeld.de> Date: Thu, 29 Feb 2024 10:34:14 +0100 Subject: [PATCH] Update coverage report path in CI configuration In the file .gitlab-ci.yml, the path to the coverage report file has been updated. It has been changed from `cooperative_cuisine/coverage.xml` to `coverage.xml`, adjusting the directory where the report file is located. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b322efb9..2113b02f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,7 +10,7 @@ pytest: reports: coverage_report: coverage_format: cobertura - path: cooperative_cuisine/coverage.xml + path: coverage.xml pages: script: -- GitLab