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