2016-05-29 17:11:31 +00:00
|
|
|
[tox]
|
2018-05-13 07:56:30 +00:00
|
|
|
envlist = py36, py37, lint
|
2016-07-05 22:03:40 +00:00
|
|
|
skipsdist = True
|
2016-08-10 05:29:48 +00:00
|
|
|
toxworkdir={env:TOX_WORK_DIR:.tox}
|
2016-05-29 17:11:31 +00:00
|
|
|
|
|
|
|
[testenv]
|
2016-06-07 07:17:15 +00:00
|
|
|
deps =
|
2016-06-29 02:44:25 +00:00
|
|
|
{env:CI_DEPS:}
|
2016-06-07 07:17:15 +00:00
|
|
|
-rrequirements.txt
|
2017-05-17 15:27:57 +00:00
|
|
|
passenv = CODECOV_TOKEN CI CI_* TRAVIS TRAVIS_* APPVEYOR APPVEYOR_* SNAPSHOT_* OPENSSL RTOOL_*
|
2016-07-09 09:19:58 +00:00
|
|
|
setenv = HOME = {envtmpdir}
|
2016-06-10 04:03:54 +00:00
|
|
|
commands =
|
2017-01-19 13:00:50 +00:00
|
|
|
mitmdump --version
|
2017-02-14 23:27:14 +00:00
|
|
|
pytest --timeout 60 --cov-report='' \
|
2018-05-24 05:10:50 +00:00
|
|
|
--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}
|
2016-06-29 02:44:25 +00:00
|
|
|
{env:CI_COMMANDS:python -c ""}
|
2016-06-10 04:03:54 +00:00
|
|
|
|
2018-06-05 16:47:42 +00:00
|
|
|
[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 =
|
2017-01-19 13:00:50 +00:00
|
|
|
mitmdump --version
|
2017-02-14 21:44:55 +00:00
|
|
|
flake8 --jobs 8 mitmproxy pathod examples test release
|
2018-03-31 15:25:21 +00:00
|
|
|
python ./test/filename_matching.py
|
2016-10-26 20:26:18 +00:00
|
|
|
rstcheck README.rst
|
2018-02-03 20:37:33 +00:00
|
|
|
mypy --ignore-missing-imports ./mitmproxy ./pathod
|
|
|
|
mypy --ignore-missing-imports --follow-imports=skip ./examples/simple/ ./examples/pathod/ ./examples/complex/
|
2016-11-27 23:51:52 +00:00
|
|
|
|
2017-02-15 17:52:32 +00:00
|
|
|
[testenv:individual_coverage]
|
|
|
|
deps =
|
|
|
|
-rrequirements.txt
|
|
|
|
commands =
|
2018-03-31 15:25:21 +00:00
|
|
|
python ./test/individual_coverage.py
|
2017-02-15 17:52:32 +00:00
|
|
|
|
2018-03-06 21:25:38 +00:00
|
|
|
[testenv:cibuild]
|
2018-06-02 19:37:44 +00:00
|
|
|
passenv = TRAVIS_* APPVEYOR_* AWS_* TWINE_* DOCKER_* RTOOL_KEY WHEEL DOCKER PYINSTALLER WININSTALLER
|
2016-11-27 23:51:52 +00:00
|
|
|
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
|
2018-03-06 21:25:38 +00:00
|
|
|
awscli
|
2016-11-27 23:51:52 +00:00
|
|
|
commands =
|
2017-12-26 18:21:43 +00:00
|
|
|
mitmdump --version
|
2018-05-18 08:37:56 +00:00
|
|
|
python ./release/cibuild.py {posargs}
|
2018-03-25 10:12:00 +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
|
|
|
|
pathod --version
|
|
|
|
pathoc --version
|
|
|
|
|
2018-03-25 10:12:00 +00:00
|
|
|
[testenv:docs]
|
2018-05-18 08:37:56 +00:00
|
|
|
passenv = TRAVIS_* APPVEYOR_* AWS_*
|
2018-03-25 10:12:00 +00:00
|
|
|
deps =
|
|
|
|
-rrequirements.txt
|
|
|
|
awscli
|
|
|
|
changedir = docs
|
|
|
|
commands =
|
|
|
|
./ci
|