From 901cfcd647134109d4b2f5061452198d20de2abe Mon Sep 17 00:00:00 2001 From: ChristianZaccaria Date: Mon, 7 Jul 2025 14:11:02 +0100 Subject: [PATCH] Precommit --- .github/workflows/unit-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 85ebb5731..620d68b04 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -53,7 +53,7 @@ jobs: run: | coverage=$(uv run --python ${{ matrix.python }} --group unit coverage report -m | tail -1 | tail -c 4 | head -c 2) echo "Total coverage: ${coverage}%" - + # Check if coverage is below the threshold if (( ${coverage} < 40 )); then echo "Coverage failed at ${coverage}%, expected at least 40%"