-
Notifications
You must be signed in to change notification settings - Fork 2
/
noxfile.py
150 lines (119 loc) · 3.74 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
from __future__ import annotations
import os
from pathlib import Path
import nox
nox.options.default_venv_backend = "uv|virtualenv"
nox.options.reuse_existing_virtualenvs = True
PY38 = "3.8"
PY39 = "3.9"
PY310 = "3.10"
PY311 = "3.11"
PY312 = "3.12"
PY_VERSIONS = [PY38, PY39, PY310, PY311, PY312]
PY_DEFAULT = PY_VERSIONS[0]
PY_LATEST = PY_VERSIONS[-1]
DJ32 = "3.2"
DJ42 = "4.2"
DJ50 = "5.0"
DJMAIN = "main"
DJMAIN_MIN_PY = PY310
DJ_VERSIONS = [DJ32, DJ42, DJ50, DJMAIN]
DJ_LTS = [DJ32, DJ42]
DJ_DEFAULT = DJ_LTS[0]
DJ_LATEST = DJ_VERSIONS[-2]
WT52 = "5.2"
WT60 = "6.0"
WTMAIN = "main"
WTMAIN_MIN_PY = PY38
WTMAIN_MIN_DJ = DJ42
WT_VERSIONS = [WT52, WT60, WTMAIN]
WT_LTS = [WT52]
WT_DEFAULT = WT_LTS[0]
WT_LATEST = WT_VERSIONS[-2]
def version(ver: str) -> tuple[int, ...]:
"""Convert a string version to a tuple of ints, e.g. "3.10" -> (3, 10)"""
return tuple(map(int, ver.split(".")))
def should_skip(python: str, django: str, wagtail: str) -> bool:
"""Return True if the test should be skipped"""
if django == DJMAIN and version(python) < version(DJMAIN_MIN_PY):
# Django main requires Python 3.10+
return True
if django == DJ32 and version(python) >= version(PY312):
# Django 3.2 requires Python < 3.12
return True
if django == DJ50 and version(python) < version(PY310):
# Django 5.0 requires Python 3.10+
return True
if wagtail == WTMAIN and version(python) < version(WTMAIN_MIN_PY):
# Wagtail main requires Python 3.8+
return True
if wagtail == WTMAIN and (
django == DJMAIN or version(django) < version(WTMAIN_MIN_DJ)
):
# Wagtail main requires Django 4.2+
return True
return False
@nox.session
def test(session):
session.notify(
f"tests(python='{PY_DEFAULT}', django='{DJ_DEFAULT}', wagtail='{WT_DEFAULT}')"
)
@nox.session
@nox.parametrize(
"python,django,wagtail",
[
(python, django, wagtail)
for python in PY_VERSIONS
for django in DJ_VERSIONS
for wagtail in WT_VERSIONS
if not should_skip(python, django, wagtail)
],
)
def tests(session, django, wagtail):
session.install("wagtail-heroicons[dev] @ .")
if django == DJMAIN:
session.install(
"django @ https://github.com/django/django/archive/refs/heads/main.zip"
)
else:
session.install(f"django=={django}")
if wagtail == WTMAIN:
session.install(
"wagtail @ https://github.com/wagtail/wagtail/archive/refs/heads/main.zip"
)
else:
session.install(f"wagtail=={wagtail}")
session.run("python", "-m", "pytest")
@nox.session
def coverage(session):
session.install("wagtail-heroicons[dev] @ .")
session.run("python", "-m", "pytest", "--cov=wagtail_heroicons")
try:
summary = os.environ["GITHUB_STEP_SUMMARY"]
with Path(summary).open("a") as output_buffer:
output_buffer.write("")
output_buffer.write("### Coverage\n\n")
output_buffer.flush()
session.run(
"python",
"-m",
"coverage",
"report",
"--skip-covered",
"--skip-empty",
"--format=markdown",
stdout=output_buffer,
)
except KeyError:
session.run(
"python", "-m", "coverage", "html", "--skip-covered", "--skip-empty"
)
session.run("python", "-m", "coverage", "report")
@nox.session
def lint(session):
session.install("wagtail-heroicons[lint] @ .")
session.run("python", "-m", "pre_commit", "run", "--all-files")
@nox.session
def mypy(session):
session.install("wagtail-heroicons[dev] @ .")
session.run("python", "-m", "mypy", ".")