Skip to content

Commit f3db3fe

Browse files
committed
Added shell=True for stub test boltkit invocation
1 parent 499529c commit f3db3fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/stub/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def __init__(self, port, script):
4343
self.script = os.path.join(os.path.dirname(__file__), "scripts", script)
4444

4545
def run(self):
46-
self._process = subprocess.Popen(["python", "-m", "boltkit", "stub", "-v", "-l", ":{}".format(str(self.port)), "-t", "10", self.script], stdout=subprocess.PIPE)
46+
self._process = subprocess.Popen(["python", "-m", "boltkit", "stub", "-v", "-l", ":{}".format(str(self.port)), "-t", "10", self.script], stdout=subprocess.PIPE, shell=True)
4747
# Need verbose for this to work
4848
line = self._process.stdout.readline().decode("utf-8")
4949
log.debug("started stub server {}".format(self.port))

0 commit comments

Comments
 (0)