-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.cfg
89 lines (68 loc) · 1.43 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[metadata]
license_file = LICENSE-LGPL-3.0.txt
[bdist_wheel]
universal = 1
[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0
[pep257]
ignore=D203
[flake8]
max-line-length=88
ignore=N806,I100,I101,I201,N802,C901,E722
exclude=*/test/*,*/data/*,*/bin/*,*app.py*,*__init__.py*,*_initapp.py*,*_console.py
max-complexity=10
[doc8]
max-line-length=88
verbose=1
[tool:pytest]
addopts = --cov-config=setup.cfg
testpaths =
isbntools/test
isbntools/contrib/test
[coverage:run]
branch = True
omit = */.virtualenvs/dev38/*,isbntools/test/*
[coverage:report]
fail_under = 90
show_missing = True
skip_covered = True
# Regexes for directories to exclude from consideration
omit =
*/test/*
*/bin/*
*/app/*
*/python?.?/*
*/site-packages/nose/*
*version*
*isbndb*
*fmt*
*bouth*
*lab*
*app*
*__init__*
*__initapp*
*plugins*
*.conf.py
*hook.py
*files.py
*conf.py
*cache.py
*exceptions*
*console*
*_columnize*
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about missing debug-only code:
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:
ignore_errors = True