2016-05-29 17:11:31 +00:00
|
|
|
[tox]
|
2016-12-23 19:30:04 +00:00
|
|
|
envlist = py35, py36, docs, 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
|
2016-12-11 22:07:47 +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='' \
|
|
|
|
--cov=mitmproxy --cov=pathod \
|
|
|
|
--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
|
|
|
|
2016-06-07 07:17:15 +00:00
|
|
|
[testenv:docs]
|
|
|
|
changedir = docs
|
2016-07-09 09:19:58 +00:00
|
|
|
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
|
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
|
2017-02-14 21:48:24 +00:00
|
|
|
python3 test/filename_matching.py
|
2016-10-26 20:26:18 +00:00
|
|
|
rstcheck README.rst
|
2017-03-20 00:13:40 +00:00
|
|
|
mypy --ignore-missing-imports ./mitmproxy
|
2016-11-27 23:51:52 +00:00
|
|
|
|
2017-02-15 17:52:32 +00:00
|
|
|
[testenv:individual_coverage]
|
|
|
|
deps =
|
|
|
|
-rrequirements.txt
|
|
|
|
commands =
|
|
|
|
python3 test/individual_coverage.py
|
|
|
|
|
2016-11-27 23:51:52 +00:00
|
|
|
[testenv:wheel]
|
|
|
|
recreate = True
|
|
|
|
deps =
|
|
|
|
commands =
|
|
|
|
python setup.py -q bdist_wheel --dist-dir release/dist
|
|
|
|
pip install {posargs} release/dist/mitmproxy-{env:VERSION:}-py3-none-any.whl
|
|
|
|
# skip `mitmproxy --version` if SKIP_MITMPROXY is defined.
|
|
|
|
{env:SKIP_MITMPROXY:mitmproxy --version}
|
|
|
|
mitmdump --version
|
|
|
|
mitmweb --version
|
|
|
|
pathod --version
|
|
|
|
pathoc --version
|
|
|
|
|
|
|
|
[testenv:rtool]
|
|
|
|
deps =
|
|
|
|
-rrequirements.txt
|
|
|
|
-e./release
|
|
|
|
# The 3.2 release is broken 🎉
|
|
|
|
# the next commit after this updates the bootloaders, which then segfault! 🎉
|
|
|
|
# https://github.com/pyinstaller/pyinstaller/issues/2232
|
2016-12-27 02:09:43 +00:00
|
|
|
git+https://github.com/pyinstaller/pyinstaller.git@483c819d6a256b58db6740696a901bd41c313f0c; sys_platform == 'win32'
|
|
|
|
git+https://github.com/mhils/pyinstaller.git@d094401e4196b1a6a03818b80164a5f555861cef; sys_platform != 'win32'
|
|
|
|
|
2016-11-27 23:51:52 +00:00
|
|
|
commands =
|
|
|
|
rtool {posargs}
|