Skip to content

Commit c236248

Browse files
committed
test: performance - remove Popen(shell=True) on Windows
not needed according to official python docs - https://docs.python.org/2/library/subprocess.html#index-2
1 parent 61ebfa8 commit c236248

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

tools/test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,6 @@ def RunProcess(context, timeout, args, **rest):
617617
pty_out = rest.pop('pty_out')
618618

619619
process = subprocess.Popen(
620-
shell = utils.IsWindows(),
621620
args = popen_args,
622621
**rest
623622
)

0 commit comments

Comments
 (0)