forked from googleapis/google-cloud-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnoxfile.py
More file actions
143 lines (118 loc) · 3.48 KB
/
noxfile.py
File metadata and controls
143 lines (118 loc) · 3.48 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
# 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.
"""Build and test configuration file.
Assumes ``nox >= 2018.9.14`` is installed.
"""
import os
import nox
NOX_DIR = os.path.abspath(os.path.dirname(__file__))
DEFAULT_INTERPRETER = "3.7"
PYPY = "pypy3"
ALL_INTERPRETERS = ("3.5", "3.6", "3.7", PYPY)
def get_path(*names):
return os.path.join(NOX_DIR, *names)
@nox.session(py=ALL_INTERPRETERS)
def unit(session):
# Install all dependencies.
session.install("pytest", "pytest-cov")
session.install(".")
# Run py.test against the unit tests.
run_args = ["pytest"]
if session.posargs:
run_args.extend(session.posargs)
else:
run_args.extend(
[
"--cov=google.cloud.ndb",
"--cov=tests",
"--cov-config",
get_path(".coveragerc"),
"--cov-report=",
]
)
run_args.append(get_path("tests", "unit"))
session.run(*run_args)
if not session.posargs:
session.notify("cover")
@nox.session(py=DEFAULT_INTERPRETER)
def cover(session):
# Install all dependencies.
session.install("coverage")
# Run coverage report.
session.run("coverage", "report", "--fail-under=100", "--show-missing")
# Erase cached coverage data.
session.run("coverage", "erase")
def run_black(session, use_check=False):
args = ["black"]
if use_check:
args.append("--check")
args.extend(
[
"--line-length=79",
get_path("docs"),
get_path("noxfile.py"),
get_path("src"),
get_path("tests"),
]
)
session.run(*args)
@nox.session(py=DEFAULT_INTERPRETER)
def lint(session):
"""Run linters.
Returns a failure if the linters find linting errors or sufficiently
serious code quality issues.
"""
session.install("flake8", "black")
run_black(session, use_check=True)
session.run("flake8", "google", "tests")
@nox.session(py=DEFAULT_INTERPRETER)
def blacken(session):
# Install all dependencies.
session.install("black")
# Run ``black``.
run_black(session)
@nox.session(py=DEFAULT_INTERPRETER)
def docs(session):
# Install all dependencies.
session.install("Sphinx")
session.install(".")
# Building the docs.
run_args = [
"sphinx-build",
"-W",
"-b",
"html",
"-d",
get_path("docs", "_build", "doctrees"),
"docs",
get_path("docs", "_build", "html"),
]
session.run(*run_args)
@nox.session(py=DEFAULT_INTERPRETER)
def doctest(session):
# Install all dependencies.
session.install("Sphinx")
session.install(".")
# Run the script for building docs and running doctests.
run_args = [
"sphinx-build",
"-W",
"-b",
"doctest",
"-d",
get_path("docs", "_build", "doctrees"),
get_path("docs"),
get_path("docs", "_build", "doctest"),
]
session.run(*run_args)