From ba04a22492c30743129b93a6c31fcb22bc1c968f Mon Sep 17 00:00:00 2001 From: Cesar Celis Hernandez Date: Tue, 26 Dec 2023 14:52:03 -0500 Subject: [PATCH] Adjusting the threshold of the coverage (#3172) --- .github/workflows/jobs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/jobs.yaml b/.github/workflows/jobs.yaml index 747215a56..f956661ca 100644 --- a/.github/workflows/jobs.yaml +++ b/.github/workflows/jobs.yaml @@ -1169,7 +1169,7 @@ jobs: go tool cover -func=all.out | grep total > tmp2 result=`cat tmp2 | awk 'END {print $3}'` result=${result%\%} - threshold=71.3 + threshold=65.0 echo "Result:" echo "$result%" if (( $(echo "$result >= $threshold" |bc -l) )); then