File: noxfile_parametrize.py

package info (click to toggle)
python-nox 2025.11.12-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,880 kB
  • sloc: python: 10,199; makefile: 204; sh: 6
file content (11 lines) | stat: -rw-r--r-- 185 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
import nox


@nox.session
@nox.parametrize(
    ["version"],
    [["8.1.0"], ["7.5.0"]],
    ["8.1.0", "7.5.0"],
)
def check_package_files(session: nox.Session, version: str):
    pass