From 87b260231859d12b9cdfeca561b8e32077703903 Mon Sep 17 00:00:00 2001 From: Krzysztof kuhy Rudnicki Date: Tue, 2 Dec 2025 22:09:16 +0100 Subject: [PATCH] Set coverage fail_under=100 and add python_pkg/lichess_bot to sources - Add python_pkg/lichess_bot to coverage sources - Set fail_under=100 to enforce 100% test coverage --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f65136b..649fca6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -200,7 +200,7 @@ filterwarnings = [ # COVERAGE - Code coverage configuration # ============================================================================ [tool.coverage.run] -source = ["PYTHON", "articles", "poker-modifier-app"] +source = ["PYTHON", "articles", "poker-modifier-app", "python_pkg/lichess_bot"] branch = true omit = [ "*/__pycache__/*", @@ -211,7 +211,7 @@ omit = [ [tool.coverage.report] # Fail under this percentage -fail_under = 0 +fail_under = 100 show_missing = true skip_covered = false exclude_lines = [