FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-spanner/noxfile.py at main · Animanny/python-spanner · GitHub
Animanny
/
python-spanner
Public
forked from
googleapis/python-spanner
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-spanner
/
noxfile.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
266 lines (221 loc) · 7.79 KB
Breadcrumbs
python-spanner
/
noxfile.py
Copy path
File metadata and controls
266 lines (221 loc) · 7.79 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
# -*- coding: utf-8 -*-
#
# Copyright 2018 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
#
# https://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.
# Generated by synthtool. DO NOT EDIT!
from
__future__
import
absolute_import
import
os
import
pathlib
import
shutil
import
nox
BLACK_VERSION
=
"black==19.10b0"
BLACK_PATHS
=
[
"docs"
,
"google"
,
"tests"
,
"noxfile.py"
,
"setup.py"
]
DEFAULT_PYTHON_VERSION
=
"3.8"
SYSTEM_TEST_PYTHON_VERSIONS
=
[
"3.8"
]
UNIT_TEST_PYTHON_VERSIONS
=
[
"3.6"
,
"3.7"
,
"3.8"
,
"3.9"
,
"3.10"
]
CURRENT_DIRECTORY
=
pathlib
.
Path
(
__file__
).
parent
.
absolute
()
# 'docfx' is excluded since it only needs to run in 'docs-presubmit'
nox
.
options
.
sessions
=
[
"unit"
,
"system"
,
"cover"
,
"lint"
,
"lint_setup_py"
,
"blacken"
,
"docs"
,
]
# Error if a python version is missing
nox
.
options
.
error_on_missing_interpreters
=
True
@
nox
.
session
(
python
=
DEFAULT_PYTHON_VERSION
)
def
lint
(
session
):
"""Run linters.
Returns a failure if the linters find linting errors or sufficiently
serious code quality issues.
"""
session
.
install
(
"flake8"
,
BLACK_VERSION
)
session
.
run
(
"black"
,
"--check"
,
*
BLACK_PATHS
,
)
session
.
run
(
"flake8"
,
"google"
,
"tests"
)
@
nox
.
session
(
python
=
DEFAULT_PYTHON_VERSION
)
def
blacken
(
session
):
"""Run black. Format code to uniform standard."""
session
.
install
(
BLACK_VERSION
)
session
.
run
(
"black"
,
*
BLACK_PATHS
,
)
@
nox
.
session
(
python
=
DEFAULT_PYTHON_VERSION
)
def
lint_setup_py
(
session
):
"""Verify that setup.py is valid (including RST check)."""
session
.
install
(
"docutils"
,
"pygments"
)
session
.
run
(
"python"
,
"setup.py"
,
"check"
,
"--restructuredtext"
,
"--strict"
)
def
default
(
session
):
# Install all test dependencies, then install this package in-place.
constraints_path
=
str
(
CURRENT_DIRECTORY
/
"testing"
/
f"constraints-
{
session
.
python
}
.txt"
)
session
.
install
(
"mock"
,
"asyncmock"
,
"pytest"
,
"pytest-cov"
,
"pytest-asyncio"
,
"-c"
,
constraints_path
,
)
session
.
install
(
"-e"
,
"."
,
"-c"
,
constraints_path
)
# Run py.test against the unit tests.
session
.
run
(
"py.test"
,
"--quiet"
,
"--cov=google.cloud.spanner"
,
"--cov=google.cloud"
,
"--cov=tests.unit"
,
"--cov-append"
,
"--cov-config=.coveragerc"
,
"--cov-report="
,
"--cov-fail-under=0"
,
os
.
path
.
join
(
"tests"
,
"unit"
),
*
session
.
posargs
,
)
# XXX Work around Kokoro image's older pip, which borks the OT install.
session
.
run
(
"pip"
,
"install"
,
"--upgrade"
,
"pip"
)
session
.
install
(
"-e"
,
".[tracing]"
,
"-c"
,
constraints_path
)
# XXX: Dump installed versions to debug OT issue
session
.
run
(
"pip"
,
"list"
)
# Run py.test against the unit tests with OpenTelemetry.
session
.
run
(
"py.test"
,
"--quiet"
,
"--cov=google.cloud.spanner"
,
"--cov=google.cloud"
,
"--cov=tests.unit"
,
"--cov-append"
,
"--cov-config=.coveragerc"
,
"--cov-report="
,
"--cov-fail-under=0"
,
os
.
path
.
join
(
"tests"
,
"unit"
),
*
session
.
posargs
,
)
@
nox
.
session
(
python
=
UNIT_TEST_PYTHON_VERSIONS
)
def
unit
(
session
):
"""Run the unit test suite."""
default
(
session
)
@
nox
.
session
(
python
=
SYSTEM_TEST_PYTHON_VERSIONS
)
def
system
(
session
):
"""Run the system test suite."""
constraints_path
=
str
(
CURRENT_DIRECTORY
/
"testing"
/
f"constraints-
{
session
.
python
}
.txt"
)
system_test_path
=
os
.
path
.
join
(
"tests"
,
"system.py"
)
system_test_folder_path
=
os
.
path
.
join
(
"tests"
,
"system"
)
# Check the value of `RUN_SYSTEM_TESTS` env var. It defaults to true.
if
os
.
environ
.
get
(
"RUN_SYSTEM_TESTS"
,
"true"
)
==
"false"
:
session
.
skip
(
"RUN_SYSTEM_TESTS is set to false, skipping"
)
# Sanity check: Only run tests if the environment variable is set.
if
not
os
.
environ
.
get
(
"GOOGLE_APPLICATION_CREDENTIALS"
,
""
)
and
not
os
.
environ
.
get
(
"SPANNER_EMULATOR_HOST"
,
""
):
session
.
skip
(
"Credentials or emulator host must be set via environment variable"
)
# Install pyopenssl for mTLS testing.
if
os
.
environ
.
get
(
"GOOGLE_API_USE_CLIENT_CERTIFICATE"
,
"false"
)
==
"true"
:
session
.
install
(
"pyopenssl"
)
system_test_exists
=
os
.
path
.
exists
(
system_test_path
)
system_test_folder_exists
=
os
.
path
.
exists
(
system_test_folder_path
)
# Sanity check: only run tests if found.
if
not
system_test_exists
and
not
system_test_folder_exists
:
session
.
skip
(
"System tests were not found"
)
# Use pre-release gRPC for system tests.
session
.
install
(
"--pre"
,
"grpcio"
)
# Install all test dependencies, then install this package into the
# virtualenv's dist-packages.
session
.
install
(
"mock"
,
"pytest"
,
"google-cloud-testutils"
,
"-c"
,
constraints_path
)
session
.
install
(
"-e"
,
".[tracing]"
,
"-c"
,
constraints_path
)
# Run py.test against the system tests.
if
system_test_exists
:
session
.
run
(
"py.test"
,
"--quiet"
,
f"--junitxml=system_
{
session
.
python
}
_sponge_log.xml"
,
system_test_path
,
*
session
.
posargs
,
)
if
system_test_folder_exists
:
session
.
run
(
"py.test"
,
"--quiet"
,
f"--junitxml=system_
{
session
.
python
}
_sponge_log.xml"
,
system_test_folder_path
,
*
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=99"
)
session
.
run
(
"coverage"
,
"erase"
)
@
nox
.
session
(
python
=
DEFAULT_PYTHON_VERSION
)
def
docs
(
session
):
"""Build the docs for this library."""
session
.
install
(
"-e"
,
".[tracing]"
)
session
.
install
(
"sphinx==4.0.1"
,
"alabaster"
,
"recommonmark"
)
shutil
.
rmtree
(
os
.
path
.
join
(
"docs"
,
"_build"
),
ignore_errors
=
True
)
session
.
run
(
"sphinx-build"
,
"-W"
,
# warnings as errors
"-T"
,
# show full traceback on exception
"-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
=
DEFAULT_PYTHON_VERSION
)
def
docfx
(
session
):
"""Build the docfx yaml files for this library."""
session
.
install
(
"-e"
,
".[tracing]"
)
session
.
install
(
"sphinx==4.0.1"
,
"alabaster"
,
"recommonmark"
,
"gcp-sphinx-docfx-yaml"
)
shutil
.
rmtree
(
os
.
path
.
join
(
"docs"
,
"_build"
),
ignore_errors
=
True
)
session
.
run
(
"sphinx-build"
,
"-T"
,
# show full traceback on exception
"-N"
,
# no colors
"-D"
,
(
"extensions=sphinx.ext.autodoc,"
"sphinx.ext.autosummary,"
"docfx_yaml.extension,"
"sphinx.ext.intersphinx,"
"sphinx.ext.coverage,"
"sphinx.ext.napoleon,"
"sphinx.ext.todo,"
"sphinx.ext.viewcode,"
"recommonmark"
),
"-b"
,
"html"
,
"-d"
,
os
.
path
.
join
(
"docs"
,
"_build"
,
"doctrees"
,
""
),
os
.
path
.
join
(
"docs"
,
""
),
os
.
path
.
join
(
"docs"
,
"_build"
,
"html"
,
""
),
)
Back
|
FazBrowse Home
|
New Git URL