mitmproxy/setup.cfg

25 lines
426 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 = --timeout 30 -s
[coverage:run]
branch = True
include = mitmproxy netlib pathod
omit = *contrib*, *tnetstring*, *platform*, *console*, *main.py
[coverage:report]
show_missing = True
exclude_lines =
pragma: nocover
pragma: no cover
raise NotImplementedError()