Skip to content

Commit

Permalink
Change Python Windows tests to 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kpayson64 committed Jun 2, 2017
1 parent 3576673 commit 631862f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tools/dockerfile/test/python_jessie_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ RUN pip install --upgrade google-api-python-client
RUN apt-get update && apt-get install -y \
python-all-dev \
python3-all-dev \
python-pip
python-pip \
python3-pip

# Install Python packages from PyPI
RUN pip install pip --upgrade
Expand Down
1 change: 1 addition & 0 deletions tools/run_tests/helper_scripts/build_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ fi
############################
# Perform build operations #
############################
$PYTHON -m pip install virtualenv

# 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)
Expand Down
2 changes: 1 addition & 1 deletion tools/run_tests/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ def _get_pythons(self, args):

if args.compiler == 'default':
if os.name == 'nt':
return (python27_config,)
return (python35_config,)
else:
return (python27_config, python34_config,)
elif args.compiler == 'python2.7':
Expand Down

0 comments on commit 631862f

Please sign in to comment.