forked from meltano/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
noxfile.py
174 lines (142 loc) · 4.13 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
"""Nox configuration."""
from __future__ import annotations
import os
import shutil
import sys
from pathlib import Path
from textwrap import dedent
import nox
try:
from nox_poetry import Session, session
except ImportError:
message = f"""\
Nox failed to import the 'nox-poetry' package.
Please install it using the following command:
{sys.executable} -m pip install nox-poetry"""
raise SystemExit(dedent(message)) from None
package = "singer_sdk"
python_versions = ["3.11", "3.10", "3.9", "3.8", "3.7"]
main_python_version = "3.10"
locations = "singer_sdk", "tests", "noxfile.py", "docs/conf.py"
nox.options.sessions = (
"mypy",
"tests",
"doctest",
)
test_dependencies = [
"coverage[toml]",
"pytest",
"pytest-snapshot",
"pytest-durations",
"freezegun",
"pandas",
"requests-mock",
# Cookiecutter tests
"black",
"cookiecutter",
"PyYAML",
"darglint",
"flake8",
"flake8-annotations",
"flake8-docstrings",
"mypy",
]
@session(python=python_versions)
def mypy(session: Session) -> None:
"""Check types with mypy."""
args = session.posargs or ["singer_sdk"]
session.install(".")
session.install(
"mypy",
"pytest",
"importlib-resources",
"sqlalchemy2-stubs",
"types-python-dateutil",
"types-requests",
"types-pytz",
"types-simplejson",
"types-PyYAML",
)
session.run("mypy", *args)
if not session.posargs:
session.run("mypy", f"--python-executable={sys.executable}", "noxfile.py")
@session(python=python_versions)
def tests(session: Session) -> None:
"""Execute pytest tests and compute coverage."""
session.install(".[s3]")
session.install(*test_dependencies)
# temp fix until pyarrow is supported on python 3.11
if session.python != "3.11":
session.install(
"pyarrow",
)
try:
session.run(
"coverage",
"run",
"--parallel",
"-m",
"pytest",
"-v",
"--durations=10",
*session.posargs,
)
finally:
if session.interactive:
session.notify("coverage", posargs=[])
@session(python=main_python_version)
def update_snapshots(session: Session) -> None:
"""Update pytest snapshots."""
args = session.posargs or ["-m", "snapshot"]
session.install(".")
session.install(*test_dependencies)
session.run("pytest", "--snapshot-update", *args)
@session(python=python_versions)
def doctest(session: Session) -> None:
"""Run examples with xdoctest."""
if session.posargs:
args = [package, *session.posargs]
else:
args = [package]
if "FORCE_COLOR" in os.environ:
args.append("--xdoctest-colored=1")
session.install(".")
session.install("pytest", "xdoctest[colors]")
session.run("pytest", "--xdoctest", *args)
@session(python=main_python_version)
def coverage(session: Session) -> None:
"""Generate coverage report."""
args = session.posargs or ["report", "-m"]
session.install("coverage[toml]")
if not session.posargs and any(Path().glob(".coverage.*")):
session.run("coverage", "combine")
session.run("coverage", *args)
@session(name="docs", python=main_python_version)
def docs(session: Session) -> None:
"""Build the documentation."""
args = session.posargs or ["docs", "build", "-W"]
if not session.posargs and "FORCE_COLOR" in os.environ:
args.insert(0, "--color")
session.install(".[docs]")
build_dir = Path("build")
if build_dir.exists():
shutil.rmtree(build_dir)
session.run("sphinx-build", *args)
@session(name="docs-serve", python=main_python_version)
def docs_serve(session: Session) -> None:
"""Build the documentation."""
args = session.posargs or [
"--open-browser",
"--watch",
".",
"--ignore",
"**/.nox/*",
"docs",
"build",
"-W",
]
session.install(".[docs]")
build_dir = Path("build")
if build_dir.exists():
shutil.rmtree(build_dir)
session.run("sphinx-autobuild", *args)