forked from unionai-oss/pandera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
noxfile.py
420 lines (357 loc) · 12 KB
/
noxfile.py
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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
"""Nox sessions."""
# isort: skip_file
import os
import re
import shutil
import sys
from typing import Dict, List
# setuptools must be imported before distutils !
import setuptools # pylint:disable=unused-import # noqa: F401
from distutils.core import run_setup # pylint:disable=wrong-import-order
import nox
from nox import Session
from pkg_resources import Requirement, parse_requirements
nox.options.sessions = (
"requirements",
"mypy",
"tests",
"docs",
"doctests",
)
DEFAULT_PYTHON = "3.8"
PYTHON_VERSIONS = ["3.8", "3.9", "3.10"]
PANDAS_VERSIONS = ["1.2.0", "1.3.5", "latest"]
PACKAGE = "pandera"
SOURCE_PATHS = PACKAGE, "tests", "noxfile.py"
REQUIREMENT_PATH = "requirements-dev.txt"
ALWAYS_USE_PIP = {
"ray",
"furo",
"types-click",
"types-pyyaml",
"types-pkg_resources",
}
CI_RUN = os.environ.get("CI") == "true"
if CI_RUN:
print("Running on CI")
else:
print("Running locally")
LINE_LENGTH = 79
def _build_setup_requirements() -> Dict[str, List[Requirement]]:
"""Load requirments from setup.py."""
dist = run_setup("setup.py")
reqs = {"core": dist.install_requires} # type: ignore
reqs.update(dist.extras_require) # type: ignore
return {
extra: list(parse_requirements(reqs)) for extra, reqs in reqs.items()
}
def _build_dev_requirements() -> List[Requirement]:
"""Load requirements from file."""
with open(REQUIREMENT_PATH, "rt", encoding="utf-8") as req_file:
reqs = []
for req in parse_requirements(req_file.read()):
req.marker = None
reqs.append(req)
return reqs
SETUP_REQUIREMENTS: Dict[str, List[Requirement]] = _build_setup_requirements()
DEV_REQUIREMENTS: List[Requirement] = _build_dev_requirements()
def _requirement_to_dict(reqs: List[Requirement]) -> Dict[str, str]:
"""Return a dict {PKG_NAME:PIP_SPECS}."""
req_dict = {}
for req in reqs:
specs = req.specs[0] if req.specs else []
specs_str = " ".join([req.unsafe_name, *specs]).replace(" ", "")
req_dict[req.unsafe_name] = specs_str
return req_dict
def _build_requires() -> Dict[str, Dict[str, str]]:
"""Return a dictionary of requirements {EXTRA_NAME: {PKG_NAME:PIP_SPECS}}.
Adds fake extras "core" and "all".
"""
extras = {
extra: reqs
for extra, reqs in SETUP_REQUIREMENTS.items()
if extra not in ("core", "all")
}
extras["all"] = DEV_REQUIREMENTS
optionals = [
req.project_name
for extra, reqs in extras.items()
for req in reqs
if extra != "all"
]
requires = {"all": _requirement_to_dict(extras["all"])}
requires["core"] = {
pkg: specs
for pkg, specs in requires["all"].items()
if pkg not in optionals
}
requires.update( # add extras
{
extra_name: {**_requirement_to_dict(pkgs), **requires["core"]}
for extra_name, pkgs in extras.items()
if extra_name != "all"
}
)
return requires
REQUIRES: Dict[str, Dict[str, str]] = _build_requires()
CONDA_ARGS = [
"--channel=conda-forge",
"--update-specs",
]
def extract_requirement_name(spec: str) -> str:
"""
Extract name of requirement from dependency string.
"""
# Assume name is everything up to the first invalid character
match = re.match(r"^[A-Za-z0-9-_]*", spec.strip())
if not match:
raise ValueError(f"Cannot parse requirement {spec!r}")
return match[0]
def conda_install(session: Session, *args):
"""Use mamba to install conda dependencies."""
run_args = [
"install",
"--yes",
*CONDA_ARGS,
"--prefix",
session.virtualenv.location, # type: ignore
*args,
]
# By default, all dependencies are re-installed from scratch with each
# session. Specifying external=True allows access to cached packages, which
# decreases runtime of the test sessions.
try:
session.run(
*["mamba", *run_args],
external=True,
)
# pylint: disable=broad-except
except Exception:
session.run(
*["conda", *run_args],
external=True,
)
def install(session: Session, *args: str):
"""Install dependencies in the appropriate virtual environment
(conda or virtualenv) and return the type of the environmment."""
if isinstance(session.virtualenv, nox.virtualenv.CondaEnv):
print("using conda installer")
conda_install(session, *args)
else:
print("using pip installer")
session.install(*args)
def install_from_requirements(session: Session, *packages: str) -> None:
"""
Install dependencies, respecting the version specified in requirements.
"""
for package in packages:
try:
specs = REQUIRES["all"][package]
except KeyError:
raise ValueError(
f"{package} cannot be found in {REQUIREMENT_PATH}."
) from None
install(session, specs)
def install_extras(
session: Session,
extra: str = "core",
force_pip: bool = False,
pandas: str = "latest",
pandas_stubs: bool = True,
) -> None:
"""Install dependencies."""
if isinstance(session.virtualenv, nox.virtualenv.PassthroughEnv):
# skip this step if there's no virtual environment specified
session.run("pip", "install", "-e", ".", "--no-deps")
return
specs, pip_specs = [], []
pandas_version = "" if pandas == "latest" else f"=={pandas}"
for spec in REQUIRES[extra].values():
req_name = extract_requirement_name(spec)
if req_name == "pandas-stubs" and not pandas_stubs:
# this is a temporary measure until all pandas-related mypy errors
# are addressed
continue
req = Requirement(spec) # type: ignore
# this is needed until ray is supported on python 3.10
# pylint: disable=line-too-long
if req.name in {"ray", "geopandas"} and session.python == "3.10": # type: ignore[attr-defined] # noqa
continue
if req.name in ALWAYS_USE_PIP: # type: ignore[attr-defined]
pip_specs.append(spec)
elif req_name == "pandas" and pandas != "latest":
specs.append(f"pandas~={pandas}")
else:
specs.append(
spec if spec != "pandas" else f"pandas{pandas_version}"
)
if extra in {"core", "pyspark", "modin", "fastapi"}:
specs.append(REQUIRES["all"]["hypothesis"])
# CI installs conda dependencies, so only run this for local runs
if (
isinstance(session.virtualenv, nox.virtualenv.CondaEnv)
and not force_pip
and not CI_RUN
):
print("using conda installer")
conda_install(session, *specs)
else:
print("using pip installer")
session.install(*specs)
# always use pip for these packages)
session.install(*pip_specs)
session.install("-e", ".", "--no-deps") # install pandera
def _generate_pip_deps_from_conda(
session: Session, compare: bool = False
) -> None:
args = ["scripts/generate_pip_deps_from_conda.py"]
if compare:
args.append("--compare")
session.run("python", *args)
@nox.session(python=PYTHON_VERSIONS)
def requirements(session: Session) -> None: # pylint:disable=unused-argument
"""Check that setup.py requirements match requirements-dev.txt"""
install(session, "pyyaml")
try:
_generate_pip_deps_from_conda(session, compare=True)
except nox.command.CommandFailed as err:
_generate_pip_deps_from_conda(session)
print(f"{REQUIREMENT_PATH} has been re-generated ✨ 🍰 ✨")
raise err
ignored_pkgs = {"black", "pandas"}
mismatched = []
# only compare package versions, not python version markers.
str_dev_reqs = [str(x) for x in DEV_REQUIREMENTS]
for extra, reqs in SETUP_REQUIREMENTS.items():
for req in reqs:
if (
req.project_name not in ignored_pkgs
and str(req) not in str_dev_reqs
):
mismatched.append(f"{extra}: {req.project_name}")
if mismatched:
print(
f"Packages {mismatched} defined in setup.py "
+ f"do not match {REQUIREMENT_PATH}."
)
print(
"Modify environment.yml, "
+ f"then run 'nox -s requirements' to generate {REQUIREMENT_PATH}"
)
sys.exit(1)
EXTRA_NAMES = [
extra
for extra in REQUIRES
if (
extra != "all"
and "python_version" not in extra
and extra not in {"modin"}
)
]
@nox.session(python=PYTHON_VERSIONS)
@nox.parametrize("pandas", PANDAS_VERSIONS)
@nox.parametrize("extra", EXTRA_NAMES)
def tests(session: Session, pandas: str, extra: str) -> None:
"""Run the test suite."""
# skip these conditions
python = (
session.python or f"{sys.version_info.major}.{sys.version_info.minor}"
)
if (
(pandas, extra)
in {
("1.1.5", "pyspark"),
("1.1.5", "modin-dask"),
("1.1.5", "modin-ray"),
}
or (python, pandas, extra)
in {
("3.10", "1.1.5", "modin-dask"),
("3.10", "1.1.5", "modin-ray"),
}
or (python, extra)
in {
("3.7", "modin-dask"),
("3.7", "modin-ray"),
("3.10", "modin-dask"),
("3.10", "modin-ray"),
("3.10", "pyspark"),
}
):
session.skip()
install_extras(session, extra, pandas=pandas)
env = {}
if extra.startswith("modin"):
extra, engine = extra.split("-")
if engine not in {"dask", "ray"}:
raise ValueError(f"{engine} is not a valid modin engine")
env = {"CI_MODIN_ENGINES": engine}
if session.posargs:
args = session.posargs
else:
path = f"tests/{extra}/" if extra != "all" else "tests"
args = []
if extra == "strategies":
# strategies tests runs very slowly in python 3.7:
# https://github.com/pandera-dev/pandera/issues/556
# as a stop-gap, use the "dev" profile for 3.7
profile = "ci" if CI_RUN and session.python != "3.7" else "dev"
# enable threading via pytest-xdist
args = [
"-n=auto",
"-q",
f"--hypothesis-profile={profile}",
]
args += [
f"--cov={PACKAGE}",
"--cov-report=term-missing",
"--cov-report=xml",
"--cov-append",
"--verbosity=10",
]
if not CI_RUN:
args.append("--cov-report=html")
args.append(path)
session.run("pytest", *args, env=env)
@nox.session(python=PYTHON_VERSIONS)
def doctests(session: Session) -> None:
"""Build the documentation."""
install_extras(session, extra="all", force_pip=True)
session.run("xdoctest", PACKAGE, "--quiet")
@nox.session(python=PYTHON_VERSIONS)
def docs(session: Session) -> None:
"""Build the documentation."""
# this is needed until ray and geopandas are supported on python 3.10
if session.python == "3.10":
session.skip()
install_extras(session, extra="all", force_pip=True)
session.chdir("docs")
# build html docs
if not CI_RUN and not session.posargs:
shutil.rmtree("_build", ignore_errors=True)
shutil.rmtree(
os.path.join("source", "reference", "generated"),
ignore_errors=True,
)
for builder in ["doctest", "html"]:
session.run(
"sphinx-build",
"-W",
"-T",
f"-b={builder}",
"-d",
os.path.join("_build", "doctrees", ""),
"source",
os.path.join("_build", builder, ""),
)
else:
shutil.rmtree(os.path.join("_build"), ignore_errors=True)
args = session.posargs or [
"-v",
"-W",
"-E",
"-b=doctest",
"source",
"_build",
]
session.run("sphinx-build", *args)