mitmproxy/tox.ini

16 lines
532 B
INI
Raw Normal View History

2016-05-29 17:11:31 +00:00
[tox]
envlist = py27, py35, lint
[testenv]
deps = -rrequirements.txt
2016-05-30 22:25:24 +00:00
[testenv:py27]
commands = py.test -n 8 --timeout 60 ./test
[testenv:py35]
commands = py.test -n 8 --timeout 60 test/netlib test/mitmproxy/script test/pathod/test_utils.py test/pathod/test_log.py test/pathod/test_language_generators.py test/pathod/test_language_writer.py test/pathod/test_language_base.py test/pathod/test_language_http.py test_language_websocket.py
2016-05-29 17:11:31 +00:00
[testenv:lint]
deps = flake8
2016-05-30 07:44:40 +00:00
commands = flake8 --count mitmproxy netlib pathod examples test