mitmproxy/tox.ini

32 lines
1.2 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-07-01 21:10:48 +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 =
py.test --timeout 60 {posargs} {env:TESTS}
2016-06-29 02:44:25 +00:00
{env:CI_COMMANDS:python -c ""}
[testenv:py35]
2016-06-29 02:44:25 +00:00
setenv =
2016-07-01 21:10:48 +00:00
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 test/mitmproxy/test_server.py test/mitmproxy/test_filt.py
2016-06-29 06:48:19 +00:00
HOME = {envtmpdir}
2016-06-07 07:17:15 +00:00
[testenv:docs]
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-25 09:27:58 +00:00
deps = flake8>=2.6.2, <3
2016-07-01 21:10:48 +00:00
usedevelop = False
skip_install = True
skipsdist = True
2016-06-07 07:17:15 +00:00
commands = flake8 --jobs 8 --count mitmproxy netlib pathod examples test