aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: 899fffc66e86184f9741a3d883fd92f4279817ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[tox]
envlist = py27, py35, docs, lint

[testenv]
usedevelop = True
deps =
  {env:CI_DEPS:}
  -rrequirements.txt
passenv = CODECOV_TOKEN CI CI_* TRAVIS TRAVIS_* APPVEYOR APPVEYOR_*
setenv =
  TESTS = test/
  HOME = {envtmpdir}
commands =
  py.test --timeout 60 {posargs} {env:TESTS}
  {env:CI_COMMANDS:python -c ""}

[testenv:py35]
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 test/mitmproxy/test_server.py test/mitmproxy/test_filt.py
  HOME = {envtmpdir}

[testenv:docs]
changedir = docs
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees .  {envtmpdir}/html

[testenv:lint]
deps = flake8>=2.6.2, <3
usedevelop = False
skip_install = True
skipsdist = True
commands = flake8 --jobs 8 --count mitmproxy netlib pathod examples test