Files
deb-python-kafka/travis_selector.sh
2014-05-01 10:27:30 -07:00

13 lines
240 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 == "2.7" ]; then
echo "py27"
elif [ $1 == "2.6" ]; then
echo "py26"
else
echo $1
fi;