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
This commit is contained in:
Krzysztof kuhy Rudnicki 2025-12-02 22:09:16 +01:00
parent 94fef50913
commit 87b2602318

View File

@ -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 = [