Skip to content

Commit b388aa0

Browse files
committed
Allow user to specify flags (e.g. -vv) to nox' test_packaging session
1 parent d81d29d commit b388aa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def tests_packaging(session: nox.Session) -> None:
4949
"""
5050

5151
session.install("-r", "tests/requirements.txt", "--prefer-binary")
52-
session.run("pytest", "tests/extra_python_package")
52+
session.run("pytest", "tests/extra_python_package", *session.posargs)
5353

5454

5555
@nox.session(reuse_venv=True)

0 commit comments

Comments
 (0)