Files
deb-python-kafka/travis_selector.sh
Dana Powers 71a789133b Add py35 to tox testing
move python3 configs to default and special case py26/py27
add py35 to travis_selector.sh
2015-12-04 11:33:19 -08:00

19 lines
369 B
Bash
Executable File

#!/bin/bash
# This works with the .travis.yml file to select a python version for testing
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
echo "py33"
elif [ $1 == "2.7" ]; then
echo "py27"
elif [ $1 == "2.6" ]; then
echo "py26"
else
echo $1
fi;