File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Original file line number Diff line number Diff line change 19
19
- secure : TQ0e6XKeFwVkoqgOJH9f/afyRouUSC6s7LC32C4JS+O2X4sXyXTPXACmzu5wCW0BXPc6HvITMLvkf7g6XXyGlCPkjM8Uw5Vg5F9+cwN1HMlI+gK6bMGTUfrwN5ruFT+KmEnD4F93NY3xkDbZd0fw23d/mVloTc6V0gUsxEUkuhM=
20
20
addons :
21
21
apt :
22
+ sources :
23
+ - deadsnakes
22
24
packages :
23
25
- portaudio19-dev
26
+ - python3.5
24
27
install :
25
28
- pip install --upgrade pip wheel virtualenv
26
29
- pip install nox-automation coverage
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ def run_tests_in_sesssion(
190
190
success_codes = [0 , 5 ]) # Treat no test collected as success.
191
191
192
192
193
- @nox .parametrize ('interpreter' , ['python2.7' , 'python3.4 ' ])
193
+ @nox .parametrize ('interpreter' , ['python2.7' , 'python3.5 ' ])
194
194
def session_tests (session , interpreter ):
195
195
"""Runs tests for all non-gae standard samples."""
196
196
# session.posargs is any leftover arguments from the command line,
@@ -212,9 +212,9 @@ def session_gae(session):
212
212
213
213
@nox .parametrize ('subsession' , ['gae' , 'tests' ])
214
214
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."""
216
216
if subsession == 'tests' :
217
- interpreter = 'python3.4 '
217
+ interpreter = 'python3.5 '
218
218
sample_directories = collect_sample_dirs (
219
219
'.' , set ('./appengine/standard' ))
220
220
elif subsession == 'gae' :
You can’t perform that action at this time.
0 commit comments