-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnoxfile.py
174 lines (137 loc) · 4.29 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
import os
import pathlib
import shutil
import nox
ROOT = pathlib.Path(__file__).parent
nox.options.sessions = ["lint", "test", "test-bmi", "test-notebooks"]
@nox.session
def test(session: nox.Session) -> None:
"""Run the tests."""
session.install("-r", "requirements-testing.txt")
session.install(".")
args = [
"-n",
"auto",
"--cov",
"brie",
"-vvv",
] + session.posargs
if "CI" in os.environ:
args.append(f"--cov-report=xml:{ROOT.absolute()!s}/coverage.xml")
session.run("pytest", *args)
if "CI" not in os.environ:
session.run("coverage", "report", "--ignore-errors", "--show-missing")
@nox.session(name="test-bmi", venv_backend="mamba")
def test_bmi(session: nox.Session) -> None:
"""Run the tests."""
session.conda_install("bmi-tester")
session.conda_install("--file", "requirements.txt")
session.install(".", "--no-deps")
session.run(
"bmi-test",
"--config-file=tests/test_bmi/brie.yaml",
"--root-dir=tests/test_bmi",
"-vvv",
"brie.brie_bmi:BrieBMI",
)
@nox.session(name="test-notebooks")
def test_notebooks(session: nox.Session) -> None:
"""Run the notebooks."""
args = [
"pytest",
"notebooks",
"--nbmake",
"--nbmake-kernel=python3",
"--nbmake-timeout=3000",
"-n",
"auto",
"-vvv",
] + session.posargs
session.install("-r", "requirements-testing.txt")
session.install("nbmake")
session.install("-r", "notebooks/requirements.txt")
session.install(".")
session.run(*args)
@nox.session
def lint(session: nox.Session) -> None:
"""Look for lint."""
session.install("pre-commit")
session.run("pre-commit", "run", "--all-files")
@nox.session
def build(session: nox.Session) -> None:
"""Build sdist and wheel dists."""
session.install("pip")
session.install("build")
session.run("python", "--version")
session.run("pip", "--version")
session.run("python", "-m", "build", "--outdir", "./build/wheelhouse")
@nox.session
def release(session):
"""Tag, build and publish a new release to PyPI."""
session.install("zest.releaser[recommended]")
session.run("fullrelease")
@nox.session(name="publish-testpypi")
def publish_testpypi(session):
"""Publish wheelhouse/* to TestPyPI."""
session.install("twine")
session.run("twine", "check", "build/wheelhouse/*")
session.run(
"twine",
"upload",
"--skip-existing",
"--repository-url",
"https://test.pypi.org/legacy/",
"build/wheelhouse/*.tar.gz",
)
@nox.session(name="publish-pypi")
def publish_pypi(session):
"""Publish wheelhouse/* to PyPI."""
session.install("twine")
session.run("twine", "check", "build/wheelhouse/*")
session.run(
"twine",
"upload",
"--skip-existing",
"build/wheelhouse/*.tar.gz",
)
@nox.session(python=False)
def clean(session):
"""Remove all .venv's, build files and caches in the directory."""
root_folders = (
[
"baked_brie.egg-info",
".pytest_cache",
".venv",
"build",
"build/wheelhouse",
]
if not session.posargs
else []
)
with session.chdir(ROOT):
for folder in root_folders:
session.log(f"rm -r {folder}")
shutil.rmtree(folder, ignore_errors=True)
for folder in _args_to_folders(session.posargs):
with session.chdir(folder):
for pattern in ["*.py[co]", "__pycache__"]:
session.log(f"rm {pattern}")
_clean_rglob(pattern)
@nox.session(python=False, name="clean-checkpoints")
def clean_checkpoints(session):
"""Remove jupyter notebook checkpoint files."""
for folder in _args_to_folders(session.posargs):
with session.chdir(folder):
_clean_rglob("*-checkpoint.ipynb")
_clean_rglob(".ipynb_checkpoints")
def _args_to_folders(args):
return [ROOT] if not args else [pathlib.Path(f) for f in args]
def _clean_rglob(pattern):
nox_dir = pathlib.Path(".nox")
for p in pathlib.Path(".").rglob(pattern):
if nox_dir in p.parents:
continue
if p.is_dir():
p.rmdir()
else:
p.unlink()