Skip to content

Commit

Permalink
fix: ci fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fmelihh committed May 12, 2024
1 parent 0761da2 commit 88fe51e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/python_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ jobs:
- name: Check coverage threshold
run: |
if (( "$(echo "$COVERAGE_REPORT < 110" | bc)" )); then
COVERAGE_RESULT=$(echo "$COVERAGE_REPORT < 110" | bc)
if [ "$COVERAGE_RESULT" -eq 1 ]; then
echo "Coverage less than 60%. Exiting..."
exit 1
fi

0 comments on commit 88fe51e

Please sign in to comment.