From bbf275ebdd541a0b127e6a0e2dd09ce7c262ea2e Mon Sep 17 00:00:00 2001 From: andrei <18027129+akurilov@users.noreply.github.com> Date: Sun, 13 Aug 2023 16:21:17 +0300 Subject: [PATCH] feat: support number conditions --- scripts/cover.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cover.sh b/scripts/cover.sh index 4866d3a..4f9aae2 100755 --- a/scripts/cover.sh +++ b/scripts/cover.sh @@ -1,7 +1,7 @@ #!/bin/bash COVERAGE=$(cat cover.tmp) -THRESHOLD=70 +THRESHOLD=50 if [[ ${COVERAGE} -lt ${THRESHOLD} ]]; \ then \ echo "FAILED: test coverage ${COVERAGE}% < ${THRESHOLD}%"; \