mitmproxy/tox.ini

69 lines
1.3 KiB
INI
Raw Normal View History

2016-05-29 17:11:31 +00:00
[tox]
2019-09-28 17:52:18 +00:00
envlist = py35, py36, py37, lint, individual_coverage, wheeltest, 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 =
-rrequirements.txt
2016-07-09 09:19:58 +00:00
setenv = HOME = {envtmpdir}
commands =
mitmdump --version
pytest --timeout 60 --cov-report xml \
--cov=mitmproxy --cov=pathod --cov=release \
2017-02-14 23:27:14 +00:00
--full-cov=mitmproxy/ --full-cov=pathod/ \
2017-01-23 21:53:56 +00:00
{posargs}
[testenv:py35]
whitelist_externals =
bash
deps =
-rrequirements.txt
commands =
bash -c "mitmdump --version 2>&1 | grep 'mitmproxy requires Python 3.6'"
2016-05-29 17:11:31 +00:00
[testenv:lint]
2016-10-23 00:20:57 +00:00
commands =
mitmdump --version
2017-02-14 21:44:55 +00:00
flake8 --jobs 8 mitmproxy pathod examples test release
python ./test/filename_matching.py
rstcheck README.rst
2019-11-16 13:56:01 +00:00
mypy .
2017-02-15 17:52:32 +00:00
[testenv:individual_coverage]
deps =
-rrequirements.txt
commands =
python ./test/individual_coverage.py
2017-02-15 17:52:32 +00:00
[testenv:cibuild]
passenv = CI_* GITHUB_* AWS_* TWINE_* DOCKER_*
deps =
-rrequirements.txt
2019-07-17 20:24:38 +00:00
pyinstaller==3.5
2019-09-28 10:29:07 +00:00
twine==2.0.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
pathod --version
pathoc --version
[testenv:docs]
passenv = GITHUB_* AWS_*
deps =
-rrequirements.txt
awscli
changedir = docs
commands =
./ci