Skip to content

Commit ad83760

Browse files
committed
Move test_runs.py to test/
1 parent 046ff48 commit ad83760

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

β€Žruns/__init__.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def _run(
142142
for line in split_commands(commands, echo):
143143
cmd: t.Union[str, t.Sequence[str]] = shlex.split(line, comments=True)
144144
if shell:
145-
cmd = ' '.join(shlex.quote(c) for c in cmd)
145+
cmd = shlex.join(cmd)
146146

147147
try:
148148
result = function(cmd, *args, **kwargs)

β€Žtest/__init__.pyβ€Ž

Whitespace-only changes.
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,5 @@ def test_shell(self):
118118
'README.rst',
119119
'pyproject.toml',
120120
'runs',
121-
'test_runs.py',
122121
'tox.ini',
123122
}

0 commit comments

Comments
Β (0)