2016-05-29 17:11:31 +00:00
|
|
|
[tox]
|
2021-03-07 15:17:40 +00:00
|
|
|
envlist = py, flake8, mypy
|
2016-07-05 22:03:40 +00:00
|
|
|
skipsdist = True
|
2016-08-10 05:29:48 +00:00
|
|
|
toxworkdir={env:TOX_WORK_DIR:.tox}
|
2016-05-29 17:11:31 +00:00
|
|
|
|
|
|
|
[testenv]
|
2016-06-07 07:17:15 +00:00
|
|
|
deps =
|
2021-01-20 14:06:02 +00:00
|
|
|
-e .[dev]
|
2016-07-09 09:19:58 +00:00
|
|
|
setenv = HOME = {envtmpdir}
|
2016-06-10 04:03:54 +00:00
|
|
|
commands =
|
2017-01-19 13:00:50 +00:00
|
|
|
mitmdump --version
|
2020-08-06 19:55:37 +00:00
|
|
|
pytest --timeout 60 -vv --cov-report xml \
|
2020-12-14 22:52:33 +00:00
|
|
|
--continue-on-collection-errors \
|
2020-12-13 12:51:17 +00:00
|
|
|
--cov=mitmproxy --cov=release \
|
|
|
|
--full-cov=mitmproxy/ \
|
2017-01-23 21:53:56 +00:00
|
|
|
{posargs}
|
2016-06-10 04:03:54 +00:00
|
|
|
|
2019-12-31 15:03:45 +00:00
|
|
|
[testenv:flake8]
|
2020-12-14 22:52:33 +00:00
|
|
|
deps =
|
2021-11-22 10:09:04 +00:00
|
|
|
flake8>=3.8.4,<4.1
|
2020-12-14 22:52:33 +00:00
|
|
|
flake8-tidy-imports>=4.2.0,<5
|
2016-10-23 00:20:57 +00:00
|
|
|
commands =
|
2020-12-13 12:51:17 +00:00
|
|
|
flake8 --jobs 8 mitmproxy examples test release {posargs}
|
2019-12-31 15:03:45 +00:00
|
|
|
|
|
|
|
[testenv:filename_matching]
|
2020-12-12 15:09:11 +00:00
|
|
|
deps =
|
2019-12-31 15:03:45 +00:00
|
|
|
commands =
|
2018-03-31 15:25:21 +00:00
|
|
|
python ./test/filename_matching.py
|
2019-12-31 15:03:45 +00:00
|
|
|
|
|
|
|
[testenv:mypy]
|
2021-06-13 15:17:10 +00:00
|
|
|
deps =
|
2022-03-15 18:36:59 +00:00
|
|
|
mypy==0.941
|
|
|
|
types-certifi==2021.10.8.1
|
2021-11-26 22:14:19 +00:00
|
|
|
types-Flask==1.1.6
|
|
|
|
types-Werkzeug==1.0.9
|
2022-03-16 16:16:40 +00:00
|
|
|
types-requests==2.27.13
|
2022-03-15 18:36:59 +00:00
|
|
|
types-cryptography==3.3.18
|
2022-03-16 16:16:40 +00:00
|
|
|
types-pyOpenSSL==22.0.1
|
2021-06-13 15:17:10 +00:00
|
|
|
|
2019-12-31 15:03:45 +00:00
|
|
|
commands =
|
2021-02-03 22:00:41 +00:00
|
|
|
mypy {posargs}
|
2021-11-22 10:09:04 +00:00
|
|
|
|
2017-02-15 17:52:32 +00:00
|
|
|
[testenv:individual_coverage]
|
|
|
|
commands =
|
2020-12-11 09:44:53 +00:00
|
|
|
python ./test/individual_coverage.py {posargs}
|
2017-02-15 17:52:32 +00:00
|
|
|
|
2018-05-17 09:25:32 +00:00
|
|
|
[testenv:wheeltest]
|
|
|
|
recreate = True
|
|
|
|
deps =
|
|
|
|
commands =
|
|
|
|
pip install {posargs}
|
|
|
|
mitmproxy --version
|
|
|
|
mitmdump --version
|
|
|
|
mitmweb --version
|