summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tox.ini12
-rwxr-xr-xtravis_selector.sh2
2 files changed, 9 insertions, 5 deletions
diff --git a/tox.ini b/tox.ini
index a69dc99..1ee1e16 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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
diff --git a/travis_selector.sh b/travis_selector.sh
index 7a2f45f..5700cbc 100755
--- a/travis_selector.sh
+++ b/travis_selector.sh
@@ -3,6 +3,8 @@
if [ $1 == "pypy" ]; then
echo "pypy"
+elif [ $1 == "3.5" ]; then
+ echo "py35"
elif [ $1 == "3.4" ]; then
echo "py34"
elif [ $1 == "3.3" ]; then