mitmproxy/tox.ini

67 lines
1.2 KiB
INI
Raw Normal View History

2016-05-29 17:11:31 +00:00
[tox]
2020-12-07 21:58:53 +00:00
envlist = py38, py39, flake8, filename_matching, mypy, individual_coverage, docs
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]
2020-12-18 23:38:36 +00:00
deps = mypy==0.790
commands =
2020-12-11 09:44:53 +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
[testenv:cibuild]
passenv = CI_* GITHUB_* AWS_* TWINE_* DOCKER_*
deps =
2021-01-20 14:06:02 +00:00
-e .[dev]
pyinstaller==4.2
2020-12-24 11:15:47 +00:00
twine==3.3.0
awscli
commands =
mitmdump --version
2018-05-18 08:37:56 +00:00
python ./release/cibuild.py {posargs}
2018-05-17 09:25:32 +00:00
[testenv:wheeltest]
recreate = True
deps =
commands =
pip install {posargs}
mitmproxy --version
mitmdump --version
mitmweb --version
[testenv:docs]
passenv = GITHUB_* AWS_*
deps =
2021-01-20 14:06:02 +00:00
-e .[dev]
awscli
changedir = docs
commands =
./ci.sh