Skip to content

Commit 0596a7d

Browse files
authored
Merge pull request #7 from JJCoding01/refactor
Release v0.1.8
2 parents 0b5e4ab + 0dae6af commit 0596a7d

113 files changed

Lines changed: 5985 additions & 1780 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.coveragerc

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,18 @@
11
[run]
2-
branch = True
2+
branch = True
33

44
[report]
5-
# Regexes for lines to exclude from consideration
6-
exclude_lines =
7-
# Have to re-enable the standard pragma
8-
pragma: no cover
5+
# Regexes for lines to exclude from consideration
6+
exclude_lines =
7+
pragma: no cover
8+
def __repr__
9+
def __str__
10+
raise AssertionError
11+
raise NotImplementedError
12+
if __name__ == .__main__.:
913

10-
# Don't complain about missing debug-only code:
11-
def __repr__
12-
def __str__
13-
14-
# Don't complain if tests don't hit defensive assertion code:
15-
raise AssertionError
16-
raise NotImplementedError
17-
18-
# Don't complain if non-runnable code isn't run:
19-
if __name__ == .__main__.:
20-
21-
;ignore_errors = True
14+
show_missing = True
2215

2316
[html]
24-
directory = htmlcov
17+
directory = htmlcov
18+
show_contexts = True

0 commit comments

Comments
 (0)