mitmproxy/setup.cfg

24 lines
411 B
INI
Raw Normal View History

2015-05-30 00:03:28 +00:00
[flake8]
2016-01-27 09:10:14 +00:00
max-line-length = 120
max-complexity = 20
2015-05-30 00:03:28 +00:00
[pep8]
2016-01-27 09:10:14 +00:00
max-line-length = 120
2015-05-30 00:03:28 +00:00
exclude = */contrib/*
2016-01-27 09:10:14 +00:00
ignore = E251
[pytest]
2016-01-27 09:10:14 +00:00
testpaths = test
addopts = --capture=no
[coverage:run]
branch = True
2016-02-23 17:07:12 +00:00
include = *mitmproxy*, *netlib*, *pathod*
omit = *contrib*, *tnetstring*, *platform*, *console*, *main.py
[coverage:report]
show_missing = True
exclude_lines =
pragma: no cover
raise NotImplementedError()