aboutsummaryrefslogtreecommitdiff
path: root/travis.sh
diff options
context:
space:
mode:
authorJisi Liu <jisi.liu@gmail.com>2015-10-05 16:14:50 -0700
committerJisi Liu <jisi.liu@gmail.com>2015-10-05 16:14:50 -0700
commitf509c7b2f54ef309a5cc8250cd8d7456bf3b141d (patch)
tree53b944796a5274f9350cb5e1b36c851d48a2302a /travis.sh
parentdbea00ae882b0a1df1f76cb5b23657234bf073c4 (diff)
downloadprotobuf-f509c7b2f54ef309a5cc8250cd8d7456bf3b141d.tar.gz
protobuf-f509c7b2f54ef309a5cc8250cd8d7456bf3b141d.tar.bz2
protobuf-f509c7b2f54ef309a5cc8250cd8d7456bf3b141d.zip
disable py2.6 tests for json_format_test
Diffstat (limited to 'travis.sh')
-rwxr-xr-xtravis.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/travis.sh b/travis.sh
index b4a908dd..9cdf456e 100755
--- a/travis.sh
+++ b/travis.sh
@@ -131,7 +131,8 @@ 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
+ # py26 is currently disabled due to json_format_test
+ envlist=py\{27,33,34\}-python
else
envlist=py27-python
fi