Commit 72bd9c95 authored by Jisi Liu's avatar Jisi Liu

disable tests for python-cpp under py26 as well.

parent f509c7b2
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
envlist = envlist =
# cpp implementation on py34 is currently broken due to # cpp implementation on py34 is currently broken due to
# changes introduced by http://bugs.python.org/issue22079. # changes introduced by http://bugs.python.org/issue22079.
# py26 is currently broken due to the json_format_test # py26 is currently broken due to the json_format
py{27,33,34}-{cpp,python} py{27,33,34}-{cpp,python}
[testenv] [testenv]
......
...@@ -131,7 +131,7 @@ build_python() { ...@@ -131,7 +131,7 @@ build_python() {
cd python cd python
# Only test Python 2.6/3.x on Linux # Only test Python 2.6/3.x on Linux
if [ $(uname -s) == "Linux" ]; then if [ $(uname -s) == "Linux" ]; then
# py26 is currently disabled due to json_format_test # py26 is currently disabled due to json_format
envlist=py\{27,33,34\}-python envlist=py\{27,33,34\}-python
else else
envlist=py27-python envlist=py27-python
...@@ -148,7 +148,8 @@ build_python_cpp() { ...@@ -148,7 +148,8 @@ build_python_cpp() {
cd python cd python
# Only test Python 2.6/3.x on Linux # Only test Python 2.6/3.x on Linux
if [ $(uname -s) == "Linux" ]; then if [ $(uname -s) == "Linux" ]; then
envlist=py\{26,27,33,34\}-cpp # py26 is currently disabled due to json_format
envlist=py\{27,33,34\}-cpp
else else
envlist=py27-cpp envlist=py27-cpp
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment