Skip to content

Commit ac930cd

Browse files
committed
progress
1 parent 7f10717 commit ac930cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_pytest/pytester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1527,7 +1527,7 @@ def runpytest_subprocess(
15271527
f"{prepend_command} import pytest; pytest.main({list(args)})",
15281528
]
15291529
else:
1530-
pytest_command.extend(args)
1530+
pytest_command.extend(str(arg) for arg in args) # Convert all args to strings
15311531

15321532
return self.run(*pytest_command, timeout=timeout, env=env)
15331533

0 commit comments

Comments
 (0)