mitmproxy/tox.ini

55 lines
1015 B
INI
Raw Normal View History

2016-05-29 17:11:31 +00:00
[tox]
envlist = py, flake8, mypy
2016-07-05 22:03:40 +00:00
skipsdist = True
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}
commands =
mitmdump --version
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}
[testenv:flake8]
2020-12-14 22:52:33 +00:00
deps =
flake8>=3.8.4,<4
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}
[testenv:filename_matching]
2020-12-12 15:09:11 +00:00
deps =
commands =
python ./test/filename_matching.py
[testenv:mypy]
2021-06-13 15:17:10 +00:00
deps =
mypy==0.910
types-certifi==0.1.4
types-Flask==1.1.3
types-Werkzeug==1.0.5
types-requests==2.25.6
types-cryptography==3.3.5
types-pyOpenSSL==20.0.5
2021-06-13 15:17:10 +00:00
commands =
2021-02-03 22:00:41 +00:00
mypy {posargs}
2021-01-13 16:35:15 +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