fix: Fixed some of the broken stuff added in the last commit, everything should more or less run now

This commit is contained in:
Your Name
2025-08-03 19:57:21 -04:00
parent f7a5d26c41
commit bae6665d94
42 changed files with 6156 additions and 1497 deletions
+32
View File
@@ -84,3 +84,35 @@ ignore = []
quote-style = "double"
indent-style = "space"
docstring-code-format = true
[tool.coverage.run]
source = ["src"]
branch = true
omit = [
"*/tests/*",
"*/test_*",
"*/__pycache__/*",
"*/venv/*",
"*/.venv/*",
"*/.nox/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if self.debug:",
"if settings.DEBUG",
"raise AssertionError",
"raise NotImplementedError",
"if 0:",
"if __name__ == .__main__.:",
"class .*\\bProtocol\\):",
"@(abc\\.)?abstractmethod",
]
show_missing = true
precision = 2
skip_covered = false
[tool.coverage.html]
directory = "htmlcov"