From 1f92435e2033bf1a9d0ebc0adca041c42b4cac53 Mon Sep 17 00:00:00 2001 From: Bryan Brancotte <bryan.brancotte@pasteur.fr> Date: Fri, 28 Feb 2025 18:13:12 +0100 Subject: [PATCH] add coverage report --- .gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9963031..0e7ae6f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,8 +26,11 @@ cov: - pip3 install -r requirements-dev.txt - coverage run --source='.' runtests.py - coverage report + - coverage html coverage: '/TOTAL.+ ([0-9]{1,3}%)/' - + artifacts: + paths: + - htmlcov/* upload: -- GitLab