From 2062093573fa19d5b798de6ace7e99d31512a503 Mon Sep 17 00:00:00 2001 From: Christopher Le Date: Tue, 25 Mar 2025 19:26:36 -0500 Subject: [PATCH] Enable code coverage comments on PRs in codecov configuration ## Description Enable code coverage on PR checks on file diff. Signed-off-by: Christopher Le --- .github/codecov.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/codecov.yml b/.github/codecov.yml index 91ab3ab5fd..0a9e93793a 100644 --- a/.github/codecov.yml +++ b/.github/codecov.yml @@ -24,8 +24,13 @@ coverage: flags: null paths: null -# Disable comments on PR -comment: false +comment: # enable code coverage comment on PR + layout: "diff, flags, files" + behavior: default + require_changes: false + require_base: false + require_head: true + hide_project_coverage: true ignore: - "versioneer.py"