From e8300b8a9397b7ce5196d89110e94c90d23f8dd8 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 15 Mar 2026 19:18:22 +0000 Subject: [PATCH] Remove redundant --cov-fail-under=85 from CI workflow The coverage threshold is already configured in pyproject.toml via pytest addopts (95%). The explicit CLI flag in ci.yml was stale at 85 and misleading. Let pyproject.toml be the single source of truth. https://claude.ai/code/session_01XhwTFLRX1Ter3AbgLLEtMf --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a265d6..750ef86 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,4 +35,4 @@ jobs: run: mypy runcycles - name: Run tests with coverage - run: pytest --cov runcycles --cov-fail-under=85 + run: pytest