forked from biocommons/hgvs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
49 lines (40 loc) · 1.04 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
[aliases]
test = pytest
[bdist_wheel]
universal = 1
[build_sphinx]
all_files = 1
# http://pep8.readthedocs.org/en/latest/intro.html#error-codes
[flake8]
max-line-length = 120
exclude = tests/*
max-complexity = 10
ignore = E129,E221,E241,E251,E303,W291
[run]
# enable branch coverage after we get default coverage up
# branch = True
omit =
hgvs/__init__.py
hgvs/dataproviders/interface.py
hgvs/dataproviders/ncbi.py
hgvs/dataproviders/uta.py
hgvs/decorators/*
hgvs/intervalmapper.py
hgvs/shell.py
hgvs/transcriptmapper.py
hgvs/utils/PersistentDict.py
hgvs/utils/context.py
hgvs/utils/orderedenum.py
[report]
show_missing = True
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 __name__ == .__main__.: