-
Notifications
You must be signed in to change notification settings - Fork 22
/
noxfile.py
103 lines (79 loc) · 2.72 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
from __future__ import annotations
import os
import pathlib
import shutil
import nox
PROJECT = "heat"
ROOT = pathlib.Path(__file__).parent
@nox.session
def test(session: nox.Session) -> None:
"""Run the tests."""
session.install(".[testing]")
args = ["--cov", PROJECT, "-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
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:
session.install("pip")
session.install("build")
session.run("python", "--version")
session.run("pip", "--version")
session.run("python", "-m", "build", "--outdir", "./build/wheelhouse")
@nox.session(name="publish-testpypi")
def publish_testpypi(session):
"""Publish wheelhouse/* to TestPyPI."""
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.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."""
folders = (
(ROOT,) if not session.posargs else (pathlib.Path(f) for f in session.posargs)
)
for folder in folders:
if not str(folder.resolve()).startswith(str(ROOT.resolve())):
session.log(f"skipping {folder}: folder is outside of repository")
continue
with session.chdir(folder):
session.log(f"cleaning {folder}")
shutil.rmtree("build", ignore_errors=True)
shutil.rmtree("dist", ignore_errors=True)
shutil.rmtree(f"src/{PROJECT}.egg-info", ignore_errors=True)
shutil.rmtree(".pytest_cache", ignore_errors=True)
shutil.rmtree(".venv", ignore_errors=True)
for pattern in ["*.py[co]", "__pycache__"]:
_clean_rglob(pattern)
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()