mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
25 lines
476 B
INI
25 lines
476 B
INI
[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()
|