From 03ae8fc3db58cef6d717a2cd03b8e53e250623e7 Mon Sep 17 00:00:00 2001 From: Qinqi Qu Date: Mon, 22 May 2023 17:35:04 +0800 Subject: [PATCH] action: remove patch coverage check in workflow In the recent PR, the patch coverage requirement seems to be too strict. So we temporarily remove this check and focus on project coverage. Signed-off-by: Qinqi Qu --- .github/codecov.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/codecov.yml b/.github/codecov.yml index 7f40362523..f0cb241de5 100644 --- a/.github/codecov.yml +++ b/.github/codecov.yml @@ -5,11 +5,8 @@ coverage: enabled: yes target: auto # auto compares coverage to the previous base commit # adjust accordingly based on how flaky your tests are - # this allows a 0.5% drop from the previous base commit coverage - threshold: 0.5% - patch: - default: - target: 75% # the required coverage value in each patch + # this allows a 0.3% drop from the previous base commit coverage + threshold: 0.3% comment: layout: "reach, diff, flags, files"