Skip to content
Snippets Groups Projects
Verified Commit 8f071fd0 authored by Daniel Hornung's avatar Daniel Hornung Committed by Timm Fitschen
Browse files

DOC: Comments

parent 61378d47
Branches
Tags
1 merge request!8Code coverage
Pipeline #59163 failed
...@@ -189,14 +189,18 @@ coverage_job: ...@@ -189,14 +189,18 @@ coverage_job:
- e2e_tests - e2e_tests
- unittest_py3.13 - unittest_py3.13
script: script:
# Setup
- ls -alrth . coverage - ls -alrth . coverage
- pip install --root-user-action=ignore pytest-cov - pip install --root-user-action=ignore pytest-cov
- pip install --no-deps . - pip install --no-deps .
# Merging and report generation
- coverage combine coverage/* - coverage combine coverage/*
- coverage html - coverage html
- mv htmlcov public - 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/" - 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 - 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+)?\%)$/' coverage: '/TOTAL.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/'
pages: true pages: true
artifacts: artifacts:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment