Skip to content

Commit 86a3072

Browse files
authored
Increasing coverage threshold from 48% to 49.4% (#1697)
* Increasing coverage threshold * correcting the comparison logic
1 parent 94c60e1 commit 86a3072

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/jobs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -773,8 +773,8 @@ jobs:
773773
result=${result%\%}
774774
echo "result:"
775775
echo $result
776-
threshold=48
777-
if (( $(echo "$result > $threshold" |bc -l) )); then
776+
threshold=49.4
777+
if (( $(echo "$result >= $threshold" |bc -l) )); then
778778
echo "greater than threshold, passed!"
779779
else
780780
echo "smaller than threshold, failed!"

0 commit comments

Comments
 (0)