Skip to content

Commit 04f47a5

Browse files
committed
Add coverage configuration
1 parent 04f921b commit 04f47a5

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

.coverage

52 KB
Binary file not shown.

.coveragerc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[run]
2+
branch = True
3+
command_line = -m unittest tests
4+
omit =
5+
*/venv/*
6+
(builtin)
7+
source = .
8+
9+
[report]
10+
show_missing = True

tests/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .test_utils import UtilsTestCase

0 commit comments

Comments
 (0)