travis ci.py: disable 3.5.2 testing while I debug travis issue

Change-Id: I53f74aed7d7f75eda936bb2a3e651f40d9ae1ae0
This commit is contained in:
Mark Charney
2017-06-13 12:40:46 -04:00
parent c0a4b51049
commit 9d4ac08b16

4
ci.py
View File

@@ -5,7 +5,9 @@ import subprocess
def get_python_cmds():
if platform.system() == 'Linux':
lst = []
for pyver in ['2.7','3.5.2']:
#pyvers = ['2.7','3.5.2']:
pyvers = ['2.7']:
for pyver in pyvers:
pycmd = '/opt/python/{}/bin/python'.format(pyver)
lst.append((pyver,pycmd))
return lst