aboutsummaryrefslogtreecommitdiffstats
path: root/setup.cfg
blob: 571f826f853c29c5d10bb0f029238eb19ba5edc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[flake8]
max-line-length = 130
max-complexity = 25
ignore = E251,C901
exclude = mitmproxy/contrib/*

[pytest]
testpaths = test
addopts = --capture=no

[coverage:run]
branch = True
include = *mitmproxy*, *netlib*, *pathod*
omit = *contrib*, *tnetstring*, *platform*, *console*, *main.py

[coverage:report]
show_missing = True
exclude_lines =
    pragma: no cover
    raise NotImplementedError()