diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 20 |
1 files changed, 19 insertions, 1 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = lint, py26, py27, pypy +envlist = lint, py26, py27, pypy, py33, py34 [testenv] deps = unittest2 @@ -12,7 +12,25 @@ commands = nosetests {posargs:-v --with-id --with-timer --timer-top-n 10 --with-coverage --cover-erase --cover-package kafka} setenv = PROJECT_ROOT = {toxinidir} + +[testenv:py33] +deps = + nose + nose-timer + coverage + mock + python-snappy + +[testenv:py34] +deps = + nose + nose-timer + coverage + mock + python-snappy + [testenv:lint] +basepython = python2.7 deps = unittest2 mock |