Skip to content
Snippets Groups Projects
Commit b18db2bb authored by Bryan BRANCOTTE's avatar Bryan BRANCOTTE
Browse files

provide coverage insight

parent 9fdbb477
No related branches found
No related tags found
1 merge request!41return the coverage to gitlab
Pipeline #83468 failed
......@@ -32,9 +32,14 @@ test-style:
-v $(pwd)/persistent:/code/persistent
"$CI_REGISTRY_IMAGE/$CI_COMMIT_REF_SLUG/web-container:$CI_COMMIT_SHA"
test
- mv persistent/coverage.xml coverage.xml
- mv persistent/htmlcov htmlcov
coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/'
artifacts:
reports:
coverage_report:
coverage_format: cobertura
path: coverage.xml
paths:
- htmlcov/*
- persistent/tests_http_cache.sqlite
......
......@@ -21,4 +21,7 @@ omit =
venv/*
[html]
directory = persistent/htmlcov
\ No newline at end of file
directory = persistent/htmlcov
[xml]
output = persistent_volume/coverage.xml
\ No newline at end of file
......@@ -29,6 +29,7 @@ if [ "$1" == "test" ]; then
coverage run || exit 3
coverage combine
coverage report --skip-covered --omit=*/wsgi.py,*/asgi.py,manage.py,*/apps.py
coverage xml
coverage html --omit=*/wsgi.py,*/asgi.py,manage.py,*/apps.py
exit 0
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment