https://gitlab.com/tezos/tezos
Raw File
Tip revision: 6d341f5f636794b4dae58cd4d15daebb96aa17a3 authored by Emma Turner on 27 October 2022, 13:38:15 UTC
TX Kernel runs again
Tip revision: 6d341f5
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
  # This job will fail if coverage is not found, but that is not
  # reason to stop the pipeline.
  allow_failure: true
back to top