mitmproxy/setup.cfg
Thomas Kriechbaumer e2447406cc more style cleanup
2016-05-29 13:43:20 +02:00

21 lines
416 B
INI

[flake8]
max-line-length = 140
max-complexity = 25
ignore = E251,C901
exclude = mitmproxy/contrib/*,test/mitmproxy/data/*
[pytest]
testpaths = test
addopts = --capture=no
[coverage:run]
branch = True
include = *mitmproxy*, *netlib*, *pathod*
omit = *contrib*, *tnetstring*, *platform*, *console*, *main.py
[coverage:report]
show_missing = True
exclude_lines =
pragma: no cover
raise NotImplementedError()