From 5178cee6e74c3e26ddc53e8f1dcadd906678d648 Mon Sep 17 00:00:00 2001 From: Bill Wallis Date: Wed, 13 May 2026 13:52:29 +0100 Subject: [PATCH] chore: adjust coverage options --- pyproject.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a2aceb3..8168f74 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -73,9 +73,14 @@ shell = """ [tool.pytest.ini_options] -addopts = "--cov=src --cov-fail-under=80" +addopts = "--cov=src" testpaths = ["tests"] +[tool.coverage] +run.branch = true +report.fail_under = 80 +report.show_missing = true + [tool.ruff] line-length = 80