From 307c36aa340948f7a9b883cd77fd3a41cfe41ed8 Mon Sep 17 00:00:00 2001 From: asetGem <amandine.perrin@pasteur.fr> Date: Fri, 30 Jul 2021 15:36:40 +0200 Subject: [PATCH] add -i option for coverage reports --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e616758f..261cabbc 100755 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -136,8 +136,8 @@ coverage: - pip3 install -r requirements-dev.txt script: - coverage combine .coverage-unit .coverage-functional - - coverage html - - coverage report + - coverage html -i + - coverage report -i # test coverage parsing: \d+\%\s*$ # or pytest-cov (Python): ^TOTAL.+?(\d+\%)$ artifacts: -- GitLab