mitmproxy/tox.ini

24 lines
541 B
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-07-05 22:03:40 +00:00
skipsdist = True
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-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 ""}
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-06-07 07:17:15 +00:00
commands = flake8 --jobs 8 --count mitmproxy netlib pathod examples test