We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0c2bb2c + b80cb22 commit dc245f3Copy full SHA for dc245f3
.coveragerc
@@ -1,8 +1,18 @@
1
[run]
2
branch = True
3
+omit =
4
+ */tests/*
5
+ */site-packages/*
6
+ */__init__.py
7
+ */noxfile.py*
8
9
[report]
-exclude_also =
- pass
10
+exclude_lines =
11
+ pragma: no cover
12
import
13
+ def __repr__
14
+ raise NotImplementedError
15
+ if TYPE_CHECKING
16
@abstractmethod
17
+ pass
18
+ raise ImportError
pyproject.toml
@@ -42,6 +42,7 @@ testpaths = ["tests"]
42
python_files = "test_*.py"
43
python_functions = "test_*"
44
addopts = "--cov=src --cov-config=.coveragerc --cov-report term --cov-report xml:coverage.xml --cov-branch"
45
+asyncio_mode = "strict"
46
47
[build-system]
48
requires = ["hatchling", "uv-dynamic-versioning"]
0 commit comments