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

Merge branch 'have-coverage' into 'dockerizing-app'

return the coverage to gitlab

See merge request !41
parents 138409a0 b0431b21
No related branches found
No related tags found
3 merge requests!43K8S deployments of release branche, and other updates,!41return the coverage to gitlab,!38Dockerize app, and k8s
Pipeline #83471 passed
...@@ -32,8 +32,14 @@ test-style: ...@@ -32,8 +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+)?\%)$/'
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/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