diff options
author | Dana Powers <dana.powers@rd.io> | 2015-12-04 10:45:56 -0800 |
---|---|---|
committer | Dana Powers <dana.powers@rd.io> | 2015-12-04 11:03:55 -0800 |
commit | cd173a020a24155360c32bfb632e691792a42eeb (patch) | |
tree | c0eb0ebda37729fdd4fd3bade89692fd5ff913a4 /tox.ini | |
parent | 67836db75b5017f732d2fcce7d4831e83089f910 (diff) | |
download | kafka-python-travis_upgrade.tar.gz |
Add py35 to tox testingtravis_upgrade
move python3 configs to default and special case py26/py27
add py35 to travis_selector.sh
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -1,10 +1,8 @@ [tox] -envlist = lint, py26, py27, pypy, py33, py34, docs +envlist = lint, py26, py27, pypy, py33, py34, py35, docs [testenv] deps = - six - unittest2 nose nose-timer coverage @@ -17,16 +15,20 @@ setenv = PROJECT_ROOT = {toxinidir} passenv = KAFKA_VERSION -[testenv:py33] +[testenv:py26] deps = + six + unittest2 nose nose-timer coverage mock python-snappy -[testenv:py34] +[testenv:py27] deps = + six + unittest2 nose nose-timer coverage |