Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
[run]
branch = True
omit =
*/tests/*
*/site-packages/*
*/__init__.py
*/noxfile.py*

[report]
exclude_also =
pass
exclude_lines =
pragma: no cover
import
def __repr__
raise NotImplementedError
if TYPE_CHECKING
@abstractmethod
pass
raise ImportError
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
addopts = "--cov=src --cov-config=.coveragerc --cov-report term --cov-report xml:coverage.xml --cov-branch"
asyncio_mode = "strict"

[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
Expand Down
Loading