diff --git a/tests.sh b/tests.sh index 04d49c6ea1..1955b7bdf9 100755 --- a/tests.sh +++ b/tests.sh @@ -312,9 +312,9 @@ build_python() { internal_build_cpp cd python if [ $(uname -s) == "Linux" ]; then - envlist=py\{27,33,34,35,36\}-python + envlist=py\{35,36\}-python else - envlist=py\{27,36\}-python + envlist=py\{36\}-python fi python -m tox -e $envlist cd .. @@ -328,10 +328,6 @@ build_python_version() { cd .. } -build_python27() { - build_python_version py27-python -} - build_python33() { build_python_version py33-python } @@ -366,9 +362,9 @@ build_python_cpp() { export DYLD_LIBRARY_PATH=../src/.libs # for OS X cd python if [ $(uname -s) == "Linux" ]; then - envlist=py\{27,33,34,35,36\}-cpp + envlist=py\{35,36\}-cpp else - envlist=py\{27,36\}-cpp + envlist=py\{36\}-cpp fi tox -e $envlist cd .. @@ -384,10 +380,6 @@ build_python_cpp_version() { cd .. } -build_python27_cpp() { - build_python_cpp_version py27-cpp -} - build_python33_cpp() { build_python_cpp_version py33-cpp }