From 95511bc15aeb7dee586fc92aaa02a076ff0727d0 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 31 Jan 2026 00:25:26 +0000 Subject: [PATCH] Increase coverage threshold to 70% With improved test coverage now at 72%, we can enforce a higher minimum threshold. This ensures code quality is maintained as the project evolves. https://claude.ai/code/session_016vkdrUjnsBU2KMifxnJfSn --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5cfca91..8cdce3e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -53,7 +53,7 @@ jobs: - name: Check test coverage threshold working-directory: ./backend run: | - coverage report --fail-under=50 + coverage report --fail-under=70 frontend-tests: runs-on: ubuntu-latest