blob: ccd62228f555f582a8675d5aea5ab5eae01422b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[flake8]
max-line-length = 120
max-complexity = 20
[pep8]
max-line-length = 120
exclude = */contrib/*
ignore = E251
[pytest]
testpaths = test
addopts = --timeout 30 -s --cov netlib --cov mitmproxy --cov pathod
[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()
|