mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
f135be8e65
Co-authored-by: requires.io <support@requires.io>
54 lines
989 B
INI
54 lines
989 B
INI
[tox]
|
|
envlist = py, flake8, mypy
|
|
skipsdist = True
|
|
toxworkdir={env:TOX_WORK_DIR:.tox}
|
|
|
|
[testenv]
|
|
deps =
|
|
-e .[dev]
|
|
setenv = HOME = {envtmpdir}
|
|
commands =
|
|
mitmdump --version
|
|
pytest --timeout 60 -vv --cov-report xml \
|
|
--continue-on-collection-errors \
|
|
--cov=mitmproxy --cov=release \
|
|
--full-cov=mitmproxy/ \
|
|
{posargs}
|
|
|
|
[testenv:flake8]
|
|
deps =
|
|
flake8>=3.8.4,<4
|
|
flake8-tidy-imports>=4.2.0,<5
|
|
commands =
|
|
flake8 --jobs 8 mitmproxy examples test release {posargs}
|
|
|
|
[testenv:filename_matching]
|
|
deps =
|
|
commands =
|
|
python ./test/filename_matching.py
|
|
|
|
[testenv:mypy]
|
|
deps =
|
|
mypy==0.902
|
|
types-certifi==0.1.4
|
|
types-Flask==1.1.1
|
|
types-Werkzeug==1.0.2
|
|
types-requests==2.25.0
|
|
types-cryptography==3.3.3
|
|
|
|
commands =
|
|
mypy {posargs}
|
|
|
|
[testenv:individual_coverage]
|
|
commands =
|
|
python ./test/individual_coverage.py {posargs}
|
|
|
|
[testenv:wheeltest]
|
|
recreate = True
|
|
deps =
|
|
commands =
|
|
pip install {posargs}
|
|
mitmproxy --version
|
|
mitmdump --version
|
|
mitmweb --version
|