mitmproxy/tox.ini

80 lines
1.5 KiB
INI
Raw Normal View History

2016-05-29 17:11:31 +00:00
[tox]
envlist = py35, py36, py37, 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 =
-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'"
[testenv:flake8]
deps = flake8>=3.7.8,<3.8
2016-10-23 00:20:57 +00:00
commands =
2017-02-14 21:44:55 +00:00
flake8 --jobs 8 mitmproxy pathod examples test release
[testenv:filename_matching]
commands =
python ./test/filename_matching.py
[testenv:mypy]
deps = mypy>=0.761,<0.762
commands =
2019-11-16 13:56:01 +00:00
mypy .
[testenv:rstcheck]
deps = rstcheck>=2.2,<4.0
commands =
rstcheck README.rst
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
2020-04-03 15:46:34 +00:00
twine==3.1.1
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.sh