mitmproxy/setup.cfg

21 lines
440 B
INI
Raw Normal View History

2015-05-30 00:03:28 +00:00
[flake8]
2016-05-29 11:33:20 +00:00
max-line-length = 140
max-complexity = 25
2016-10-26 05:19:43 +00:00
ignore = E251,C901,W503
2016-05-29 11:33:20 +00:00
exclude = mitmproxy/contrib/*,test/mitmproxy/data/*
addons = file,open,basestring,xrange,unicode,long,cmp
[tool:pytest]
2016-01-27 09:10:14 +00:00
testpaths = test
2016-06-25 09:27:58 +00:00
addopts = --capture=no --color=yes
[coverage:run]
branch = False
omit = *contrib*, *tnetstring*, *platform*, *main.py
[coverage:report]
show_missing = True
exclude_lines =
pragma: no cover
raise NotImplementedError()