tests: add test framework

This commit is contained in:
2026-04-17 23:12:07 +02:00
parent d0316dbd62
commit a8da6d6f91
6 changed files with 278 additions and 37 deletions
+6 -1
View File
@@ -10,10 +10,15 @@ dependencies = [
[dependency-groups]
dev = [
"coverage>=7.13.5",
"ruff>=0.15.10",
"ty>=0.0.29",
]
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D", "E501", "S104", "PLR2004", "ANN401", "BLE001", "COM812", "S603", "PLR0911"]
ignore = ["D", "E501", "S104", "PLR2004", "ANN401", "BLE001", "COM812", "S603", "PLR0911", "S101", "PT"]
[tool.coverage.run]
source = ["src"]
omit = ["src/logs.py"]