diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 49a715562b454fa75b96d43401e1d486bbe8598f..add26d0e451f165f0174ec960584a82f4db0df25 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,7 @@ include: - local: "{{cookiecutter.project_slug}}/.gitlab-ci.yml" +# Bootstrap Cookiecutter template to test provided ci pipeline template default: before_script: - python --version # For debugging @@ -9,3 +10,13 @@ default: - cookiecutter --no-input --overwrite-if-exists --output-dir . . - cd my_awesome_app - git init + +# Override artifact directories +run_unit_tests_coverage: + artifacts: + reports: + coverage_report: + coverage_format: cobertura + path: my_awesome_app/coverage.xml + paths: + - my_awesome_app/htmlcov/*