Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ env:
- secure: TQ0e6XKeFwVkoqgOJH9f/afyRouUSC6s7LC32C4JS+O2X4sXyXTPXACmzu5wCW0BXPc6HvITMLvkf7g6XXyGlCPkjM8Uw5Vg5F9+cwN1HMlI+gK6bMGTUfrwN5ruFT+KmEnD4F93NY3xkDbZd0fw23d/mVloTc6V0gUsxEUkuhM=
addons:
apt:
sources:
- deadsnakes
packages:
- portaudio19-dev
- python3.5
install:
- pip install --upgrade pip wheel virtualenv
- pip install nox-automation coverage
Expand Down
6 changes: 3 additions & 3 deletions nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def run_tests_in_sesssion(
success_codes=[0, 5]) # Treat no test collected as success.


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

@nox.parametrize('subsession', ['gae', 'tests'])
def session_travis(session, subsession):
"""On travis, just run with python3.4 and don't run slow or flaky tests."""
"""On travis, just run with python3.5 and don't run slow or flaky tests."""
if subsession == 'tests':
interpreter = 'python3.4'
interpreter = 'python3.5'
sample_directories = collect_sample_dirs(
'.', set('./appengine/standard'))
elif subsession == 'gae':
Expand Down