From 48bb0ca2210ddcb30d08d41553e203f74d13cf1b Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 15 Mar 2026 18:53:02 +0000 Subject: [PATCH] Raise test coverage threshold from unconfigured to 95% Since the test suite already achieves 100% coverage, enforce a 95% minimum via pytest --cov-fail-under to prevent regressions. https://claude.ai/code/session_01XhwTFLRX1Ter3AbgLLEtMf --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 7220827..2e8c0c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,3 +38,4 @@ strict = true [tool.pytest.ini_options] asyncio_mode = "auto" +addopts = "--cov=runcycles --cov-fail-under=95"