Change Python Windows tests to 3.5

pull/11374/head
Ken Payson 8 years ago
parent 35766734e8
commit 631862f421
  1. 3
      tools/dockerfile/test/python_jessie_x64/Dockerfile
  2. 1
      tools/run_tests/helper_scripts/build_python.sh
  3. 2
      tools/run_tests/run_tests.py

@ -75,7 +75,8 @@ RUN pip install --upgrade google-api-python-client
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
python-all-dev \ python-all-dev \
python3-all-dev \ python3-all-dev \
python-pip python-pip \
python3-pip
# Install Python packages from PyPI # Install Python packages from PyPI
RUN pip install pip --upgrade RUN pip install pip --upgrade

@ -146,6 +146,7 @@ fi
############################ ############################
# Perform build operations # # Perform build operations #
############################ ############################
$PYTHON -m pip install virtualenv
# Instnatiate the virtualenv, preferring to do so from the relevant python # Instnatiate the virtualenv, preferring to do so from the relevant python
# version. Even if these commands fail (e.g. on Windows due to name conflicts) # version. Even if these commands fail (e.g. on Windows due to name conflicts)

@ -672,7 +672,7 @@ class PythonLanguage(object):
if args.compiler == 'default': if args.compiler == 'default':
if os.name == 'nt': if os.name == 'nt':
return (python27_config,) return (python35_config,)
else: else:
return (python27_config, python34_config,) return (python27_config, python34_config,)
elif args.compiler == 'python2.7': elif args.compiler == 'python2.7':

Loading…
Cancel
Save