File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1919 - secure : TQ0e6XKeFwVkoqgOJH9f/afyRouUSC6s7LC32C4JS+O2X4sXyXTPXACmzu5wCW0BXPc6HvITMLvkf7g6XXyGlCPkjM8Uw5Vg5F9+cwN1HMlI+gK6bMGTUfrwN5ruFT+KmEnD4F93NY3xkDbZd0fw23d/mVloTc6V0gUsxEUkuhM=
2020addons :
2121 apt :
22+ sources :
23+ - deadsnakes
2224 packages :
2325 - portaudio19-dev
26+ - python3.5
2427install :
2528- pip install --upgrade pip wheel virtualenv
2629- pip install nox-automation coverage
Original file line number Diff line number Diff 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 ' ])
194194def 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' ])
214214def 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' :
You can’t perform that action at this time.
0 commit comments