Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit faa6c54

Browse filesBrowse files
author
Jon Wayne Parrott
authored
Update to Python 3.5 (GoogleCloudPlatform#534)
Change-Id: Ia42d85f7a8daba4822d8e80a52d862d992e2d364
1 parent 21ac449 commit faa6c54
Copy full SHA for faa6c54

File tree

Expand file treeCollapse file tree

2 files changed

+6
-3
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+6
-3
lines changed

‎.travis.yml

Copy file name to clipboardExpand all lines: .travis.yml
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ env:
1919
- secure: TQ0e6XKeFwVkoqgOJH9f/afyRouUSC6s7LC32C4JS+O2X4sXyXTPXACmzu5wCW0BXPc6HvITMLvkf7g6XXyGlCPkjM8Uw5Vg5F9+cwN1HMlI+gK6bMGTUfrwN5ruFT+KmEnD4F93NY3xkDbZd0fw23d/mVloTc6V0gUsxEUkuhM=
2020
addons:
2121
apt:
22+
sources:
23+
- deadsnakes
2224
packages:
2325
- portaudio19-dev
26+
- python3.5
2427
install:
2528
- pip install --upgrade pip wheel virtualenv
2629
- pip install nox-automation coverage

‎nox.py

Copy file name to clipboardExpand all lines: nox.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def run_tests_in_sesssion(
190190
success_codes=[0, 5]) # Treat no test collected as success.
191191

192192

193-
@nox.parametrize('interpreter', ['python2.7', 'python3.4'])
193+
@nox.parametrize('interpreter', ['python2.7', 'python3.5'])
194194
def session_tests(session, interpreter):
195195
"""Runs tests for all non-gae standard samples."""
196196
# session.posargs is any leftover arguments from the command line,
@@ -212,9 +212,9 @@ def session_gae(session):
212212

213213
@nox.parametrize('subsession', ['gae', 'tests'])
214214
def session_travis(session, subsession):
215-
"""On travis, just run with python3.4 and don't run slow or flaky tests."""
215+
"""On travis, just run with python3.5 and don't run slow or flaky tests."""
216216
if subsession == 'tests':
217-
interpreter = 'python3.4'
217+
interpreter = 'python3.5'
218218
sample_directories = collect_sample_dirs(
219219
'.', set('./appengine/standard'))
220220
elif subsession == 'gae':

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.