2015-05-30 00:03:28 +00:00
|
|
|
[flake8]
|
2016-05-29 11:33:20 +00:00
|
|
|
max-line-length = 140
|
2016-05-29 09:43:29 +00:00
|
|
|
max-complexity = 25
|
2022-04-26 11:53:35 +00:00
|
|
|
ignore = E203,E251,E252,C901,W292,W503,W504,W605,E722,E741,E126,F541
|
2020-12-14 22:52:33 +00:00
|
|
|
exclude = mitmproxy/contrib/*,test/mitmproxy/data/*,release/build/*
|
2016-10-19 01:25:11 +00:00
|
|
|
addons = file,open,basestring,xrange,unicode,long,cmp
|
2015-09-28 08:59:10 +00:00
|
|
|
|
2016-09-25 04:01:48 +00:00
|
|
|
[tool:pytest]
|
2022-03-15 17:33:46 +00:00
|
|
|
asyncio_mode = auto
|
2016-01-27 09:10:14 +00:00
|
|
|
testpaths = test
|
2016-06-25 09:27:58 +00:00
|
|
|
addopts = --capture=no --color=yes
|
2022-06-03 13:20:25 +00:00
|
|
|
filterwarnings =
|
|
|
|
ignore::DeprecationWarning:tornado.*:
|
2016-02-18 12:24:17 +00:00
|
|
|
|
|
|
|
[coverage:run]
|
2016-11-01 21:54:08 +00:00
|
|
|
branch = False
|
2016-06-02 02:44:06 +00:00
|
|
|
omit = *contrib*, *tnetstring*, *platform*, *main.py
|
2016-02-18 12:24:17 +00:00
|
|
|
|
|
|
|
[coverage:report]
|
|
|
|
show_missing = True
|
|
|
|
exclude_lines =
|
|
|
|
pragma: no cover
|
2020-07-30 07:07:35 +00:00
|
|
|
raise NotImplementedError
|
|
|
|
raise AssertionError
|
2019-11-18 04:19:06 +00:00
|
|
|
if typing.TYPE_CHECKING:
|
|
|
|
if TYPE_CHECKING:
|
2020-07-16 13:00:41 +00:00
|
|
|
@overload
|
2022-07-20 15:23:43 +00:00
|
|
|
@abstractmethod
|
2022-08-16 12:21:55 +00:00
|
|
|
\.\.\.
|
2017-02-14 23:27:14 +00:00
|
|
|
|
2019-11-16 13:56:01 +00:00
|
|
|
[mypy]
|
2022-11-13 18:04:34 +00:00
|
|
|
check_untyped_defs = True
|
2019-11-16 13:56:01 +00:00
|
|
|
ignore_missing_imports = True
|
2021-02-03 22:00:41 +00:00
|
|
|
files = mitmproxy,examples/addons,release
|
2019-11-16 13:56:01 +00:00
|
|
|
|
2017-12-18 08:33:14 +00:00
|
|
|
[mypy-mitmproxy.contrib.*]
|
2019-10-06 12:41:46 +00:00
|
|
|
ignore_errors = True
|
|
|
|
|
|
|
|
[mypy-tornado.*]
|
2019-11-16 13:56:01 +00:00
|
|
|
ignore_errors = True
|
|
|
|
|
|
|
|
[mypy-test.*]
|
2017-12-18 08:33:14 +00:00
|
|
|
ignore_errors = True
|
|
|
|
|
2021-02-09 00:05:02 +00:00
|
|
|
# https://github.com/python/mypy/issues/3004
|
|
|
|
[mypy-http-modify-form,http-trailers]
|
|
|
|
ignore_errors = True
|
|
|
|
|
2017-02-14 23:27:14 +00:00
|
|
|
[tool:full_coverage]
|
|
|
|
exclude =
|
|
|
|
mitmproxy/tools/
|
2018-05-24 05:10:50 +00:00
|
|
|
release/hooks
|
|
|
|
|
2017-02-15 17:52:32 +00:00
|
|
|
[tool:individual_coverage]
|
|
|
|
exclude =
|
2020-12-15 22:50:16 +00:00
|
|
|
mitmproxy/addons/onboarding.py
|
2020-12-12 13:33:37 +00:00
|
|
|
mitmproxy/connections.py
|
2017-02-15 17:52:32 +00:00
|
|
|
mitmproxy/contentviews/base.py
|
Grpc contentview (#4851)
* Partial gRPC contentview prototype, not linted, no tests, not as add-on
* Linted (flake8)
* Save dev state
* Rewrote of protobuf parser, use decoding strategy, reduced rendered data. Parser uses generators
* minor cleanup
* fix: preferred encoding was provided as function instead of value
* flake8: line length
* Backlinked message tree objects, temporary debug out
* Partial implementation of gRPC definitions. Save state to fix a cras (data invalidate in edit mode)
* hack: deal with missing exception handling for generator based content views
* gRPC/Protoparser descriptions (with test code)
* replaced manual gzip decoding with mitmproxy.net.encoding.decode
* Refactored typing imports
* Reafctoring
* distinguish request vs response definitions, separate view config from parser config
* Code cleaning, moved customized protobuf definitions to example addon
* final cleanup
* changelog
* Stubs for tests
* Fixed render_riority of addon example
* Started adding tests
* Work on tests
* mypy
* Added pseudo encoder to tests, to cover special decodings
* Example addon test added
* finalized tests, no 100 percent coverage possible, see comments un uncovered code
* minor adjustments
* fixup tests
* Typos
Co-authored-by: Maximilian Hils <git@maximilianhils.com>
2021-10-12 11:32:56 +00:00
|
|
|
mitmproxy/contentviews/grpc.py
|
2017-02-15 17:52:32 +00:00
|
|
|
mitmproxy/ctx.py
|
|
|
|
mitmproxy/exceptions.py
|
|
|
|
mitmproxy/flow.py
|
2017-03-20 00:13:40 +00:00
|
|
|
mitmproxy/io/io.py
|
|
|
|
mitmproxy/io/tnetstring.py
|
2017-02-15 17:52:32 +00:00
|
|
|
mitmproxy/log.py
|
|
|
|
mitmproxy/master.py
|
|
|
|
mitmproxy/net/check.py
|
|
|
|
mitmproxy/net/http/cookies.py
|
|
|
|
mitmproxy/net/http/message.py
|
|
|
|
mitmproxy/net/http/multipart.py
|
2017-09-04 01:29:54 +00:00
|
|
|
mitmproxy/net/tls.py
|
2022-09-18 15:15:15 +00:00
|
|
|
mitmproxy/net/udp_wireguard.py
|
2017-02-15 17:52:32 +00:00
|
|
|
mitmproxy/options.py
|
|
|
|
mitmproxy/proxy/config.py
|
|
|
|
mitmproxy/proxy/server.py
|
2020-12-14 19:00:35 +00:00
|
|
|
mitmproxy/proxy/layers/tls.py
|
2017-02-15 17:52:32 +00:00
|
|
|
mitmproxy/utils/bits.py
|
2022-03-19 15:35:40 +00:00
|
|
|
mitmproxy/utils/vt_codes.py
|
2022-06-28 11:56:31 +00:00
|
|
|
mitmproxy/utils/pyinstaller
|