mitmproxy/tox.ini

31 lines
1.1 KiB
INI
Raw Normal View History

2016-05-29 17:11:31 +00:00
[tox]
2016-06-07 07:17:15 +00:00
envlist = py27, py35, docs, lint
2016-05-29 17:11:31 +00:00
[testenv]
2016-06-29 02:44:25 +00:00
usedevelop=True
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-06-29 02:44:25 +00:00
passenv = CODECOV_TOKEN CI CI_* TRAVIS TRAVIS_* APPVEYOR APPVEYOR_*
setenv =
2016-06-29 02:44:25 +00:00
TESTS = test/
HOME = {envtmpdir}
commands =
2016-06-29 02:44:25 +00:00
py.test -n 4 --timeout 60 {posargs} {env:TESTS}
{env:CI_COMMANDS:python -c ""}
[testenv:py35]
2016-06-29 02:44:25 +00:00
setenv =
TESTS = test/netlib test/pathod/ test/mitmproxy/script test/mitmproxy/test_contentview.py test/mitmproxy/test_custom_contentview.py test/mitmproxy/test_app.py test/mitmproxy/test_controller.py test/mitmproxy/test_fuzzing.py test/mitmproxy/test_script.py test/mitmproxy/test_web_app.py test/mitmproxy/test_utils.py test/mitmproxy/test_stateobject.py test/mitmproxy/test_cmdline.py test/mitmproxy/test_contrib_tnetstring.py test/mitmproxy/test_proxy.py test/mitmproxy/test_protocol_http1.py test/mitmproxy/test_platform_pf.py
2016-06-07 07:17:15 +00:00
[testenv:docs]
2016-06-29 05:06:08 +00:00
basepython = python
2016-06-07 07:17:15 +00:00
whitelist_externals = make
changedir = docs
2016-06-29 02:44:25 +00:00
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
2016-05-29 17:11:31 +00:00
[testenv:lint]
2016-06-29 02:44:25 +00:00
basepython = python
2016-06-25 09:27:58 +00:00
deps = flake8>=2.6.2, <3
2016-06-07 07:17:15 +00:00
commands = flake8 --jobs 8 --count mitmproxy netlib pathod examples test