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
|
2015-09-28 08:59:10 +00:00
|
|
|
|
|
|
|
[pytest]
|
2016-01-27 09:10:14 +00:00
|
|
|
testpaths = test
|
2016-05-02 23:51:49 +00:00
|
|
|
addopts = --capture=no
|
2016-02-18 12:24:17 +00:00
|
|
|
|
|
|
|
[coverage:run]
|
|
|
|
branch = True
|
2016-02-23 17:07:12 +00:00
|
|
|
include = *mitmproxy*, *netlib*, *pathod*
|
2016-02-18 12:24:17 +00:00
|
|
|
omit = *contrib*, *tnetstring*, *platform*, *console*, *main.py
|
|
|
|
|
|
|
|
[coverage:report]
|
|
|
|
show_missing = True
|
|
|
|
exclude_lines =
|
|
|
|
pragma: no cover
|
|
|
|
raise NotImplementedError()
|