From bfbd54ce9a663e2b6bf6cc0c29cfbe013cf8e3f1 Mon Sep 17 00:00:00 2001 From: Pedro Spinosa Date: Wed, 22 May 2024 18:24:54 -0300 Subject: [PATCH] Decrease coverage threshold --- .github/workflows/push.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index 62e7b3f3..e59e4e00 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -96,7 +96,7 @@ jobs: set -euxo pipefail source env/bin/activate - python3 -m pytest --cov-fail-under=94 --cov=fklearn tests/ + python3 -m pytest --cov-fail-under=93 --cov=fklearn tests/ build-docs: needs: [linter, test-suite]