From ad66b758e4388fcf6e0a51b31b742f46239ddbff Mon Sep 17 00:00:00 2001 From: Todd Gamblin Date: Fri, 6 Aug 2021 01:33:12 -0700 Subject: [PATCH] codecov: allow coverage offsets for more base commit flexibility (#25293) This is an attempt to fix "Missing base commit" messages in the codecov UI. Because we do not run full tests on package PRs, package PRs' merge commits on `develop` don't have coverage info. It appears that codecov will give you an error if the pseudo-base's coverage data doesn't all apply properly to the real PR base, unless the `allow_coverage_offsets` option is set. * See here for docs: https://docs.codecov.com/docs/comparing-commits#pseudo-comparison * See here for another potential solution: https://community.codecov.com/t/2480/15 --- .codecov.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.codecov.yml b/.codecov.yml index 998b66ce7ed..fead3ad004f 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -19,3 +19,16 @@ comment: off # annotations in files that seemingly have nothing to do with the PR. github_checks: annotations: false + +# Attempt to fix "Missing base commit" messages in the codecov UI. +# Because we do not run full tests on package PRs, package PRs' merge +# commits on `develop` don't have coverage info. It appears that +# codecov will give you an error if the pseudo-base's coverage data +# doesn't all apply properly to the real PR base. +# +# See here for docs: +# https://docs.codecov.com/docs/comparing-commits#pseudo-comparison +# See here for another potential solution: +# https://community.codecov.com/t/2480/15 +codecov: + allow_coverage_offsets: true