Uh oh!
There was an error while loading. Please reload this page.
forked from GoogleCloudPlatform/python-docs-samples
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnox.py
More file actions
Latest commit
278 lines (206 loc) · 8.31 KB
/
Copy pathnox.py
File metadata and controls
278 lines (206 loc) · 8.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# Copyright 2016 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ importprint_function
importfnmatch
importos
importtempfile
importnox
try:
importci_diff_helper
exceptImportError:
ci_diff_helper=None
#
# Helpers and utility functions
#
def_list_files(folder, pattern):
"""Lists all files below the given folder that match the pattern."""
forroot, folders, filesinos.walk(folder):
forfilenameinfiles:
iffnmatch.fnmatch(filename, pattern):
yieldos.path.join(root, filename)
def_collect_dirs(
start_dir,
blacklist=set(['conftest.py', 'nox.py']),
suffix='_test.py'):
"""Recursively collects a list of dirs that contain a file matching the
given suffix.
This works by listing the contents of directories and finding
directories that have `*_test.py` files.
"""
# Collect all the directories that have tests in them.
forparent, subdirs, filesinos.walk(start_dir):
ifany(fforfinfilesiff.endswith(suffix) andfnotinblacklist):
# Don't recurse further, since py.test will do that.
delsubdirs[:]
# This dir has tests in it. yield it.
yieldparent
else:
# Filter out dirs we don't want to recurse into
subdirs[:] = [
sforsinsubdirs
ifs[0].isalpha() and
os.path.join(parent, s) notinblacklist]
def_get_changed_files():
"""Returns a list of files changed for this pull request / push.
If running on a public CI like Travis or Circle this is used to only
run tests/lint for changed files.
"""
ifnotci_diff_helper:
returnNone
try:
config=ci_diff_helper.get_config()
exceptOSError: # Not on CI.
returnNone
changed_files=ci_diff_helper.get_changed_files('HEAD', config.base)
changed_files=set([
'./{}'.format(filename) forfilenameinchanged_files])
returnchanged_files
def_filter_samples(sample_dirs, changed_files):
"""Filers the list of sample directories to only include directories that
contain files in the list of changed files."""
result= []
forsample_dirinsample_dirs:
forchanged_fileinchanged_files:
ifchanged_file.startswith(sample_dir):
result.append(sample_dir)
returnlist(set(result))
def_determine_local_import_names(start_dir):
"""Determines all import names that should be considered "local".
This is used when running the linter to insure that import order is
properly checked.
"""
file_ext_pairs= [os.path.splitext(path) forpathinos.listdir(start_dir)]
return [
basename
forbasename, extension
infile_ext_pairs
ifextension=='.py'oros.path.isdir(
os.path.join(start_dir, basename))
andbasenamenotin ('__pycache__')]
#
# App Engine specific helpers
#
_GAE_ROOT=os.environ.get('GAE_ROOT')
if_GAE_ROOTisNone:
_GAE_ROOT=tempfile.mkdtemp()
def_setup_appengine_sdk(session):
"""Installs the App Engine SDK, if needed."""
session.env['GAE_SDK_PATH'] =os.path.join(_GAE_ROOT, 'google_appengine')
session.run('gcp-devrel-py-tools', 'download-appengine-sdk', _GAE_ROOT)
#
# Test sessions
#
PYTEST_COMMON_ARGS= []
FLAKE8_COMMON_ARGS= [
'--show-source', '--builtin', 'gettext', '--max-complexity', '20',
'--import-order-style', 'google',
'--exclude', '.nox,.cache,env,lib,generated_pb2,*_pb2.py,*_pb2_grpc.py',
]
# Collect sample directories.
ALL_TESTED_SAMPLES=sorted(list(_collect_dirs('.')))
ALL_SAMPLE_DIRECTORIES=sorted(list(_collect_dirs('.', suffix='.py')))
GAE_STANDARD_SAMPLES= [
sampleforsampleinALL_TESTED_SAMPLES
ifsample.startswith('./appengine/standard')]
NON_GAE_STANDARD_SAMPLES=sorted(
list(set(ALL_TESTED_SAMPLES) -set(GAE_STANDARD_SAMPLES)))
# Filter sample directories if on a CI like Travis or Circle to only run tests
# for changed samples.
CHANGED_FILES=_get_changed_files()
ifCHANGED_FILESisnotNone:
print('Filtering based on changed files.')
ALL_TESTED_SAMPLES=_filter_samples(
ALL_TESTED_SAMPLES, CHANGED_FILES)
ALL_SAMPLE_DIRECTORIES=_filter_samples(
ALL_SAMPLE_DIRECTORIES, CHANGED_FILES)
GAE_STANDARD_SAMPLES=_filter_samples(
GAE_STANDARD_SAMPLES, CHANGED_FILES)
NON_GAE_STANDARD_SAMPLES=_filter_samples(
NON_GAE_STANDARD_SAMPLES, CHANGED_FILES)
def_session_tests(session, sample, post_install=None):
"""Runs py.test for a particular sample."""
session.install('-r', 'testing/requirements.txt')
session.chdir(sample)
ifos.path.exists(os.path.join(sample, 'requirements.txt')):
session.install('-r', 'requirements.txt')
ifpost_install:
post_install(session)
session.run(
'pytest',
*(PYTEST_COMMON_ARGS+session.posargs),
# Pytest will return 5 when no tests are collected. This can happen
# on travis where slow and flaky tests are excluded.
# See http://doc.pytest.org/en/latest/_modules/_pytest/main.html
success_codes=[0, 5])
@nox.parametrize('sample', GAE_STANDARD_SAMPLES)
defsession_gae(session, sample):
"""Runs py.test for an App Engine standard sample."""
session.interpreter='python2.7'
# Create a lib directory if needed, otherwise the App Engine vendor library
# will complain.
ifnotos.path.isdir(os.path.join(sample, 'lib')):
os.mkdir(os.path.join(sample, 'lib'))
_session_tests(session, sample, _setup_appengine_sdk)
@nox.parametrize('sample', NON_GAE_STANDARD_SAMPLES)
defsession_py27(session, sample):
"""Runs py.test for a sample using Python 2.7"""
session.interpreter='python2.7'
_session_tests(session, sample)
@nox.parametrize('sample', NON_GAE_STANDARD_SAMPLES)
defsession_py36(session, sample):
"""Runs py.test for a sample using Python 3.6"""
session.interpreter='python3.6'
_session_tests(session, sample)
@nox.parametrize('sample', ALL_SAMPLE_DIRECTORIES)
defsession_lint(session, sample):
"""Runs flake8 on the sample."""
session.install('flake8', 'flake8-import-order')
local_names=_determine_local_import_names(sample)
args=FLAKE8_COMMON_ARGS+ [
'--application-import-names', ','.join(local_names),
'.']
session.chdir(sample)
session.run('flake8', *args)
#
# Utility sessions
#
defsession_missing_tests(session):
"""Lists all sample directories that do not have tests."""
session.virtualenv=False
print('The following samples do not have tests:')
forsampleinset(ALL_SAMPLE_DIRECTORIES) -set(ALL_TESTED_SAMPLES):
print('* {}'.format(sample))
SAMPLES_WITH_GENERATED_READMES=sorted(
list(_collect_dirs('.', suffix='.rst.in')))
@nox.parametrize('sample', SAMPLES_WITH_GENERATED_READMES)
defsession_readmegen(session, sample):
"""(Re-)generates the readme for a sample."""
session.install('jinja2', 'pyyaml')
ifos.path.exists(os.path.join(sample, 'requirements.txt')):
session.install('-r', os.path.join(sample, 'requirements.txt'))
in_file=os.path.join(sample, 'README.rst.in')
session.run('python', 'scripts/readme-gen/readme_gen.py', in_file)
defsession_check_requirements(session):
"""Checks for out of date requirements and optionally updates them.
This is intentionally not parametric, as it's desired to never have two
samples with differing versions of dependencies.
"""
session.install('-r', 'testing/requirements.txt')
if'update'insession.posargs:
command='update-requirements'
else:
command='check-requirements'
reqfiles=list(_list_files('.', 'requirements*.txt'))
forreqfileinreqfiles:
session.run('gcp-devrel-py-tools', command, reqfile)