Increasing coverage threshold from 48% to 49.4% (#1697)
* Increasing coverage threshold * correcting the comparison logic
This commit is contained in:
committed by
GitHub
parent
94c60e1837
commit
86a3072fa9
4
.github/workflows/jobs.yaml
vendored
4
.github/workflows/jobs.yaml
vendored
@@ -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!"
|
||||
|
||||
Reference in New Issue
Block a user