From b9e80420c3b76ad15d7ab6c9608d355880a3909a Mon Sep 17 00:00:00 2001 From: Ignas Baranauskas Date: Mon, 18 Nov 2024 14:45:32 +0000 Subject: [PATCH] fix(ci): remove 'continue-on-error' from unit test workflow for accurate test reporting --- .github/workflows/unit-tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 343275332..267e1a6c5 100755 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -29,7 +29,6 @@ jobs: coverage run -m pytest coverage=$(coverage report -m | tail -1 | tail -c 4 | head -c 2) if (( $coverage < 90 )); then echo "Coverage failed at ${coverage}%"; exit 1; else echo "Coverage passed, ${coverage}%"; fi - continue-on-error: true - name: Upload to Codecov uses: codecov/codecov-action@v4 with: