Make tox run all tests for 2.7

This commit is contained in:
Aldo Cortesi 2016-05-31 10:25:24 +12:00
parent bc6509ab6d
commit d98582664d
1 changed files with 5 additions and 0 deletions

View File

@ -3,6 +3,11 @@ envlist = py27, py35, lint
[testenv]
deps = -rrequirements.txt
[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
[testenv:lint]