You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow passing positional arguments to nox sessions
All sessions can now take positional arguments, which will be forwarded
to the command run by the session. This is usually very useful to check
individual files, or pass extra arguments, like:
nox -R -s pytest_max -- -s tests/my/test_this.py
Sessions will not process the pre-defined files when positional
arguments are passed, so when using positional arguments you should
always include paths to check, except for pytest_xxx sessions, which
still if files are omitted, all files will be processed, so it can be
used to use custom options only too. For example:
nox -R -s pytest_max -- -sx
Signed-off-by: Leandro Lucarella <[email protected]>
0 commit comments