forked from landlab/landlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnoxfile.py
129 lines (103 loc) · 3.45 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
import os
import pathlib
import shutil
from itertools import chain
import nox
@nox.session
def tests(session: nox.Session) -> None:
"""Run the tests."""
session.install("pytest")
session.install(".[dev,testing]")
session.run("pytest", "--cov=landlab", "-vvv")
session.run("coverage", "report", "--ignore-errors", "--show-missing")
# "--fail-under=100",
@nox.session
def notebooks(session: nox.Session) -> None:
"""Run the notebooks."""
session.install(".[dev,notebooks,testing]")
session.run("pytest", "notebooks", "--run-notebook", "-n", "auto", "-vvv")
@nox.session
def cli(session: nox.Session) -> None:
"""Test the command line interface."""
session.install(".")
session.run("landlab", "--help")
session.run("landlab", "--version")
session.run("landlab", "index", "--help")
session.run("landlab", "list", "--help")
session.run("landlab", "provided-by", "--help")
session.run("landlab", "provides", "--help")
session.run("landlab", "used-by", "--help")
session.run("landlab", "uses", "--help")
session.run("landlab", "validate", "--help")
@nox.session
def lint(session: nox.Session) -> None:
"""Look for lint."""
session.install("pre-commit")
session.run("pre-commit", "run", "--all-files")
# towncrier(session)
@nox.session
def towncrier(session: nox.Session) -> None:
"""Check that there is a news fragment."""
session.install("towncrier")
session.run("towncrier", "check", "--compare-with", "origin/master")
@nox.session
def docs(session: nox.Session) -> None:
"""Build the docs."""
session.install(".[docs]")
session.chdir("docs")
if os.path.exists("build"):
shutil.rmtree("build")
session.run("sphinx-build", "-b", "html", "-W", "./source", "build/html")
@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", "./wheelhouse")
@nox.session
def release(session):
"""Tag, build and publish a new release to PyPI."""
session.install("zest.releaser[recommended]")
session.install("zestreleaser.towncrier")
session.run("fullrelease")
@nox.session
def publish_testpypi(session):
"""Publish wheelhouse/* to TestPyPI."""
session.run("twine", "check", "wheelhouse/*")
session.run(
"twine",
"upload",
"--skip-existing",
"--repository-url",
"https://test.pypi.org/legacy/",
"wheelhouse/*.tar.gz",
)
@nox.session
def publish_pypi(session):
"""Publish wheelhouse/* to PyPI."""
session.run("twine", "check", "wheelhouse/*")
session.run(
"twine",
"upload",
"--skip-existing",
"wheelhouse/*.tar.gz",
)
@nox.session(python=False)
def clean(session):
"""Remove all .venv's, build files and caches in the directory."""
PROJECT = "landlab"
ROOT = pathlib.Path(__file__).parent
shutil.rmtree("build", ignore_errors=True)
shutil.rmtree("wheelhouse", ignore_errors=True)
shutil.rmtree(f"{PROJECT}.egg-info", ignore_errors=True)
shutil.rmtree(".pytest_cache", ignore_errors=True)
shutil.rmtree(".venv", ignore_errors=True)
for p in chain(
ROOT.rglob("*.py[co]"), ROOT.rglob("*.so"), ROOT.rglob("__pycache__")
):
if p.is_dir():
p.rmdir()
else:
p.unlink()