We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42595b2 commit 9d6f73fCopy full SHA for 9d6f73f
2 files changed
.coveragerc
@@ -0,0 +1,25 @@
1
+[run]
2
+source = .
3
+omit =
4
+ tests/*
5
+ */tests/*
6
+ conftest.py
7
+ */conftest.py
8
+ setup.py
9
+ */__pycache__/*
10
+ */test_*.py
11
+ test_*.py
12
+
13
+[report]
14
+exclude_lines =
15
+ pragma: no cover
16
+ def __repr__
17
+ raise NotImplementedError
18
+ if __name__ == .__main__.:
19
+ if TYPE_CHECKING:
20
21
+show_missing = True
22
+precision = 2
23
24
+[html]
25
+directory = htmlcov
pytest.ini
@@ -7,3 +7,7 @@ addopts = -v --tb=short
pythonpath = .
filterwarnings =
ignore::DeprecationWarning
+# Coverage options (use with: pytest --cov)
+# Run: pytest --cov --cov-report=term-missing
+# Or: pytest --cov --cov-report=html
0 commit comments