-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathnoxfile.py
More file actions
328 lines (277 loc) · 9.5 KB
/
Copy pathnoxfile.py
File metadata and controls
328 lines (277 loc) · 9.5 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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
# Copyright 2019 Google LLC
#
# 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.
import os
import pathlib
import re
import shutil
import nox
CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute()
CLICK_VERSION = "click"
BLACK_VERSION = "black==23.7.0"
RUFF_VERSION = "ruff==0.14.14"
BLACK_PATHS = [
"google",
"tests",
"tests_async",
"noxfile.py",
"setup.py",
"docs/conf.py",
]
DEFAULT_PYTHON_VERSION = "3.14"
# TODO(https://github.com/googleapis/gapic-generator-python/issues/2450):
# Switch this to Python 3.15 alpha1
# https://peps.python.org/pep-0790/
PREVIEW_PYTHON_VERSION = "3.14"
UNIT_TEST_PYTHON_VERSIONS = [
"3.10",
"3.11",
"3.12",
"3.13",
"3.14",
]
ALL_PYTHON = UNIT_TEST_PYTHON_VERSIONS.copy()
UNIT_TEST_STANDARD_DEPENDENCIES = [
"mock",
"asyncmock",
"pytest",
"pytest-cov",
"pytest-asyncio",
]
UNIT_TEST_EXTERNAL_DEPENDENCIES: list[str] = []
# Error if a python version is missing
nox.options.error_on_missing_interpreters = True
# pypy will be run as a github action instead of through Kokoro
nox.options.sessions = [
"lint",
"blacken",
"format",
"mypy",
# cover must be last to avoid error `No data to report`
"docs",
]
@nox.session(python=DEFAULT_PYTHON_VERSION)
def lint(session):
session.install(
"flake8", "flake8-import-order", "docutils", CLICK_VERSION, BLACK_VERSION
)
session.install("-e", ".")
session.run("black", "--check", *BLACK_PATHS)
session.run(
"flake8",
"--import-order-style=google",
"--application-import-names=google,tests,system_tests",
"google",
"tests",
"tests_async",
)
session.run(
"python", "setup.py", "check", "--metadata", "--restructuredtext", "--strict"
)
@nox.session(python=DEFAULT_PYTHON_VERSION)
def lint_setup_py(session):
"""Verify that setup.py is valid (including RST check)."""
session.install("setuptools", "docutils", "pygments")
session.run("python", "setup.py", "check", "--restructuredtext", "--strict")
@nox.session(python=DEFAULT_PYTHON_VERSION)
def blacken(session):
"""Run black.
Format code to uniform standard.
The Python version should be consistent with what is
supplied in the Python Owlbot postprocessor.
https://github.com/googleapis/synthtool/blob/master/docker/owlbot/python/Dockerfile
"""
session.install(CLICK_VERSION, BLACK_VERSION)
session.run("black", *BLACK_PATHS)
@nox.session(python=DEFAULT_PYTHON_VERSION)
def format(session):
"""
Run ruff to sort imports and format code.
"""
# 1. Install ruff (skipped automatically if you run with --no-venv)
session.install(RUFF_VERSION)
# 2. Run Ruff to fix imports
session.run(
"ruff",
"check",
"--select",
"I",
"--fix",
f"--target-version=py{ALL_PYTHON[0].replace('.', '')}",
"--line-length=88",
*BLACK_PATHS,
)
# 3. Run Ruff to format code
session.run(
"ruff",
"format",
f"--target-version=py{ALL_PYTHON[0].replace('.', '')}",
"--line-length=88",
*BLACK_PATHS,
)
@nox.session(python=DEFAULT_PYTHON_VERSION)
def mypy(session):
"""Verify type hints are mypy compatible."""
session.install("-e", ".[aiohttp,rsa]")
session.install(
"mypy",
"types-certifi",
"types-freezegun",
"types-requests",
"types-setuptools",
"types-mock",
"pytest<8.0.0",
)
session.run("mypy", "-p", "google", "-p", "tests", "-p", "tests_async")
@nox.session(python=ALL_PYTHON)
@nox.parametrize(["install_extras"], (True, False))
def unit(session, install_extras):
# Install all test dependencies, then install this package in-place.
min_py, max_py = UNIT_TEST_PYTHON_VERSIONS[0], UNIT_TEST_PYTHON_VERSIONS[-1]
if not install_extras and session.python not in (min_py, max_py):
# only run double tests on first and last supported versions
session.skip(
f"Extended tests only run on boundary Python versions ({min_py}, {max_py}) to reduce CI load."
)
constraints_path = (
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
)
extras_constraints_path = (
CURRENT_DIRECTORY / "testing" / f"constraints-extras-{session.python}.txt"
)
install_args = []
if install_extras:
# rsa and oauth2client were both archived and support dropped,
# but we still test old code paths
session.install("oauth2client")
install_args.extend(["-e", ".[testing,enterprise_cert,rsa]"])
if extras_constraints_path.exists():
install_args.extend(["-c", str(extras_constraints_path)])
else:
install_args.extend(["-e", ".[testing]"])
if constraints_path.exists():
install_args.extend(["-c", str(constraints_path)])
session.install(*install_args)
session.run(
"pytest",
f"--junitxml=unit_{session.python}_sponge_log.xml",
"--cov-append",
"--cov=google.auth",
"--cov=google.oauth2",
"--cov=tests",
"--cov-report=term-missing",
"tests",
"tests_async",
*session.posargs,
)
@nox.session(python=DEFAULT_PYTHON_VERSION)
def cover(session):
"""Run the final coverage report.
This outputs the coverage report aggregating coverage from the unit
test runs (not system test runs), and then erases coverage data.
"""
session.install("coverage", "pytest-cov")
session.run("coverage", "report", "--show-missing", "--fail-under=100")
session.run("coverage", "erase")
@nox.session(python="3.10")
def docs(session):
"""Build the docs for this library."""
session.install("-e", ".[aiohttp]")
session.install("requests==2.31.0")
session.install("sphinx", "alabaster", "recommonmark", "sphinx-docstring-typing")
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
session.run(
"sphinx-build",
"-T", # show full traceback on exception
"-W", # warnings as errors
"-N", # no colors
"-b",
"html",
"-d",
os.path.join("docs", "_build", "doctrees", ""),
os.path.join("docs", ""),
os.path.join("docs", "_build", "html", ""),
)
@nox.session(python="3.10")
def docfx(session):
"""Build the docfx yaml files for this library."""
session.skip("This package does not have documentation in cloud.google.com")
@nox.session(python=PREVIEW_PYTHON_VERSION)
@nox.parametrize(
"protobuf_implementation",
["python", "upb"],
)
def prerelease_deps(session, protobuf_implementation):
"""
Run all tests with pre-release versions of dependencies installed
rather than the standard non pre-release versions.
Pre-release versions can be installed using
`pip install --pre <package>`.
"""
# Install all dependencies
session.install("-e", ".[testing,rsa]")
session.install("oauth2client")
# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)
# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
# constraints file containing all dependencies and extras.
with open(
CURRENT_DIRECTORY / "testing" / f"constraints-{ALL_PYTHON[0]}.txt",
encoding="utf-8",
) as constraints_file:
constraints_text = constraints_file.read()
# Ignore leading whitespace and comment lines.
constraints_deps = [
match.group(1)
for match in re.finditer(
r"^\s*(\S+)(?===\S+)", constraints_text, flags=re.MULTILINE
)
]
# Install dependencies specified in `testing/constraints-X.txt`.
session.install(*constraints_deps)
# Note: If a dependency is added to the `prerel_deps` list,
# the `core_dependencies_from_source` list in the `core_deps_from_source`
# nox session should also be updated.
prerel_deps = [
# Note: We use --no-deps below to prevent prerelease updates.
# However, aiohttp 3.10+ introduced aiohappyeyeballs as a strict requirement.
# We must manually inject it here so the aiohttp pre-release doesn't crash on import.
"aiohappyeyeballs",
"aiohttp",
"cryptography",
"grpcio",
"pyasn1-modules",
"pyjwt",
"requests",
"rsa",
"urllib3",
]
for dep in prerel_deps:
session.install("--pre", "--no-deps", "--ignore-installed", dep)
print(f"Installed {dep}")
session.run(
"py.test",
"tests",
"tests_async",
env={
"PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION": protobuf_implementation,
},
)
@nox.session(python=DEFAULT_PYTHON_VERSION)
def core_deps_from_source(session):
"""Run all tests with core dependencies installed from source
rather than pulling the dependencies from PyPI.
"""
session.skip("Skipping: Not applicable for google-auth.")