Add py35 to tox testing

move python3 configs to default and special case py26/py27
add py35 to travis_selector.sh
This commit is contained in:
Dana Powers
2015-12-04 10:45:56 -08:00
parent 7355bf4359
commit 71a789133b
2 changed files with 9 additions and 5 deletions

12
tox.ini
View File

@@ -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

View File

@@ -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