2016-05-29 17:11:31 +00:00
|
|
|
[tox]
|
2016-10-17 02:15:22 +00:00
|
|
|
envlist = py35, 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-11-27 23:51:52 +00:00
|
|
|
basepython = python3.5
|
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 =
|
2016-11-02 18:57:25 +00:00
|
|
|
mitmdump --sysinfo
|
2016-07-09 09:19:58 +00:00
|
|
|
py.test --timeout 60 {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 =
|
2016-11-02 18:57:25 +00:00
|
|
|
mitmdump --sysinfo
|
2016-12-11 22:07:47 +00:00
|
|
|
flake8 --jobs 8 --count mitmproxy pathod examples test release
|
2016-10-26 20:26:18 +00:00
|
|
|
rstcheck README.rst
|
2016-11-10 07:50:21 +00:00
|
|
|
mypy --silent-imports \
|
|
|
|
mitmproxy/addons \
|
|
|
|
mitmproxy/addonmanager.py \
|
|
|
|
mitmproxy/proxy/protocol/ \
|
2016-11-23 00:27:23 +00:00
|
|
|
mitmproxy/log.py \
|
2016-12-09 20:26:02 +00:00
|
|
|
mitmproxy/tools/dump.py mitmproxy/tools/web \
|
|
|
|
mitmproxy/contentviews
|
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}
|