Skip to content

Commit 59f03ee

Browse files
committed
tests: include pypy3.9 in nox if present
Signed-off-by: Henry Schreiner <[email protected]>
1 parent 5116a62 commit 59f03ee

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

noxfile.py

+11-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,17 @@
55
nox.needs_version = ">=2022.1.7"
66
nox.options.sessions = ["lint", "tests", "tests_packaging"]
77

8-
PYTHON_VERSIONS = ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.7", "pypy3.8"]
8+
PYTHON_VERSIONS = [
9+
"3.6",
10+
"3.7",
11+
"3.8",
12+
"3.9",
13+
"3.10",
14+
"3.11",
15+
"pypy3.7",
16+
"pypy3.8",
17+
"pypy3.9",
18+
]
919

1020
if os.environ.get("CI", None):
1121
nox.options.error_on_missing_interpreters = True

0 commit comments

Comments
 (0)