Increasing coverage threshold from 48% to 49.4% (#1697)

* Increasing coverage threshold

* correcting the comparison logic
This commit is contained in:
Cesar Celis Hernandez
2022-03-11 01:42:09 -05:00
committed by GitHub
parent 94c60e1837
commit 86a3072fa9

View File

@@ -773,8 +773,8 @@ jobs:
result=${result%\%}
echo "result:"
echo $result
threshold=48
if (( $(echo "$result > $threshold" |bc -l) )); then
threshold=49.4
if (( $(echo "$result >= $threshold" |bc -l) )); then
echo "greater than threshold, passed!"
else
echo "smaller than threshold, failed!"