Skip to content

Commit

Permalink
tests: include pypy3.9 in nox if present
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii committed Jul 16, 2022
1 parent 5116a62 commit 59f03ee
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@
nox.needs_version = ">=2022.1.7"
nox.options.sessions = ["lint", "tests", "tests_packaging"]

PYTHON_VERSIONS = ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.7", "pypy3.8"]
PYTHON_VERSIONS = [
"3.6",
"3.7",
"3.8",
"3.9",
"3.10",
"3.11",
"pypy3.7",
"pypy3.8",
"pypy3.9",
]

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

0 comments on commit 59f03ee

Please sign in to comment.