From 7034124f05d6e732aea351cde48ef8fd6fefb4ec Mon Sep 17 00:00:00 2001 From: Paula Camargo Date: Fri, 3 Nov 2023 16:12:43 -0700 Subject: [PATCH] update nox file --- noxfile.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/noxfile.py b/noxfile.py index 80bcfa92..9752f385 100644 --- a/noxfile.py +++ b/noxfile.py @@ -140,8 +140,10 @@ def _get_debugpy_info(version="latest", platform="none-any", cp="cp311"): )[0] -@nox.session() -def create_debugpy_json(session: nox.Session, version="1.7.0", cp="cp311"): +@nox.session +@nox.parametrize("version", ["1.5.1", "1.7.0", "latest"]) +@nox.parametrize("cp", ["cp39", "cp311"]) +def create_debugpy_json(session: nox.Session, version, cp): platforms = [ ("macOS", "macosx"), ("win32", "win32"),