-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathnoxfile.py
109 lines (85 loc) · 3.25 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
"""Runner script for tools used in local development and CI.
Notes:
* 'test' and 'test-<python version>' commands: nox will create separate virtualenvs per python
version, and use `poetry.lock` to determine dependency versions
* 'lint' command: tools and environments are managed by pre-commit
* All other commands: the current environment will be used instead of creating new ones
* Run `nox -l` to see all available commands
"""
from os import getenv
from os.path import join
from pathlib import Path
from shutil import rmtree
import nox
from nox_poetry import session
nox.options.reuse_existing_virtualenvs = True
nox.options.sessions = ["lint", "cov"]
LIVE_DOCS_PORT = 8181
LIVE_DOCS_IGNORE = ["*.pyc", "*.tmp", join("**", "modules", "*")]
LIVE_DOCS_WATCH = ["examples"]
CLEAN_DIRS = ["dist", "build", join("docs", "_build"), join("docs", "modules")]
PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"]
SOURCE_FILES = [
"patent_client",
]
INTEGRATION_TESTS = join("tests", "integration")
DEFAULT_COVERAGE_FORMATS = ["html", "term"]
# Run tests in parallel, grouped by test module
XDIST_ARGS = "--numprocesses=auto"
@session(python=PYTHON_VERSIONS)
def test(session):
"""Run tests in a separate virtualenv per python version"""
test_paths = session.posargs or SOURCE_FILES
cmd = f'pytest -rs {XDIST_ARGS} --doctest-glob="*.md"'
session.run(*cmd.split(" "), *test_paths)
@session(python=False, name="test-current")
def test_current(session):
"""Run tests using the current virtualenv"""
test(session)
@session(python=False)
def clean(session):
"""Clean up temporary build + documentation files"""
for dir in CLEAN_DIRS:
print(f"Removing {dir}")
rmtree(dir, ignore_errors=True)
@session(python=False)
def clean_cassettes(session):
"""Clean up VCR cassettes"""
for dir in Path(__file__).parent.glob("**/cassettes/*"):
print(f"Removing {dir}")
rmtree(dir, ignore_errors=True)
@session(python=False, name="cov")
def coverage(session):
"""Run tests and generate coverage report"""
cmd = f"pytest ./patent_client -rs {XDIST_ARGS} --cov".split(" ")
# Add coverage formats
cov_formats = session.posargs or DEFAULT_COVERAGE_FORMATS
cmd += [f"--cov-report={f}" for f in cov_formats]
# Add verbose flag, if set by environment
if getenv("PYTEST_VERBOSE"):
cmd += ["--verbose"]
session.run(*cmd)
@session(python=False)
def docs(session):
"""Build Sphinx documentation"""
cmd = "sphinx-build docs docs/_build/html -j auto"
session.run(*cmd.split(" "))
@session(python=False)
def livedocs(session):
"""Auto-build docs with live reload in browser.
Add `--open` to also open the browser after starting.
"""
args = ["-a"]
args += [f"--watch {pattern}" for pattern in LIVE_DOCS_WATCH]
args += [f"--ignore {pattern}" for pattern in LIVE_DOCS_IGNORE]
args += [f"--port {LIVE_DOCS_PORT}", "-j auto"]
if session.posargs == ["open"]:
args.append("--open-browser")
clean(session)
cmd = "sphinx-autobuild docs docs/_build/html " + " ".join(args)
session.run(*cmd.split(" "))
@session(python=False)
def lint(session):
"""Run linters and code formatters via pre-commit"""
cmd = "pre-commit run --all-files"
session.run(*cmd.split(" "))