Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ def scipy_tests(cls, args, pytest_args):
print(f"SciPy from development installed path at: {dirs.site}")

# FIXME: support pos-args with doit
extra_argv = pytest_args[:] if pytest_args else []
extra_argv = list(pytest_args[:]) if pytest_args else []
if extra_argv and extra_argv[0] == '--':
extra_argv = extra_argv[1:]

Expand Down