Revision 0ac3e074e833f139a3719e1a67f248b4f2962d06 authored by Ding Xiang Fei on 28 July 2022, 16:07:56 UTC, committed by Ding Xiang Fei on 28 July 2022, 16:07:56 UTC
1 parent 2b8041a
Raw File
test_coverage_default.yml
---
# This job fetches coverage files from the most recently merged MR on the default branch.
# It creates the html, summary and cobertura reports. It also provide a coverage % for the
# merge request.

unified_coverage:
  extends:
    - .default_settings_template
    - .image_template__runtime_build_test_dependencies_template
    - .template__coverage_report
  dependencies: []
  script:
    # On the project default branch, we fetch coverage from the last merged MR
    - COVERAGE_START_COMMIT=$CI_COMMIT_SHA poetry run python3 scripts/ci/coverage.py
back to top