From 8f071fd0a963c207534f12fab416ff77fbe2aafd Mon Sep 17 00:00:00 2001 From: Daniel <d.hornung@indiscale.com> Date: Tue, 10 Dec 2024 17:58:30 +0100 Subject: [PATCH] DOC: Comments --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8399bb2..05019ef 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -189,14 +189,18 @@ coverage_job: - e2e_tests - unittest_py3.13 script: + # Setup - ls -alrth . coverage - pip install --root-user-action=ignore pytest-cov - pip install --no-deps . + # Merging and report generation - coverage combine coverage/* - coverage html - mv htmlcov public + # Output for the pipeline follows - echo -e "To look at the coverage report, either download the artifact or go to:\n > https://docs.indiscale.com/customers/f-fit/ruqad/" - coverage report + # Regex taken from https://docs.gitlab.com/ee/ci/testing/code_coverage.html#test-coverage-examples coverage: '/TOTAL.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/' pages: true artifacts: -- GitLab