aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests.sh
diff options
context:
space:
mode:
authorGravatar Jie Luo <jieluo@google.com>2017-08-22 10:36:52 -0700
committerGravatar Jie Luo <jieluo@google.com>2017-08-22 15:59:27 -0700
commit028d6f13ee15e7a8ade2339634682fed11675e22 (patch)
treeebbd05efe2e09fbcef0617e4588e3c4eceeab69d /tests.sh
parent0b7e97880c1ac3b3a7bfeccc51a5b852c8bd37ee (diff)
Add Python 3.5 3.6
Diffstat (limited to 'tests.sh')
-rwxr-xr-xtests.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests.sh b/tests.sh
index f68de059..df0c1bcb 100755
--- a/tests.sh
+++ b/tests.sh
@@ -237,6 +237,8 @@ internal_install_python_deps() {
sudo apt-get install -y python2.6 python2.6-dev
sudo apt-get install -y python3.3 python3.3-dev
sudo apt-get install -y python3.4 python3.4-dev
+ sudo apt-get install -y python3.5 python3.5-dev
+ sudo apt-get install -y python3.6 python3.6-dev
fi
}
@@ -278,7 +280,7 @@ build_python() {
cd python
# Only test Python 2.6/3.x on Linux
if [ $(uname -s) == "Linux" ]; then
- envlist=py\{26,27,33,34\}-python
+ envlist=py\{26,27,33,34,35,36\}-python
else
envlist=py27-python
fi
@@ -294,7 +296,7 @@ build_python_cpp() {
cd python
# Only test Python 2.6/3.x on Linux
if [ $(uname -s) == "Linux" ]; then
- envlist=py\{26,27,33,34\}-cpp
+ envlist=py\{26,27,33,34,35,36\}-cpp
else
envlist=py27-cpp
fi