MCPcopy Create free account
hub / github.com/CloverHealth/temporal-sqlalchemy / _shell

Function _shell

deploy.py:14–16  ·  view source on GitHub ↗

Runs a subprocess shell with check=True by default

(cmd, check=True, stdin=None, stdout=None, stderr=None)

Source from the content-addressed store, hash-verified

12
13
14def _shell(cmd, check=True, stdin=None, stdout=None, stderr=None): # pragma: no cover
15 """Runs a subprocess shell with check=True by default"""
16 return subprocess.run(cmd, shell=True, check=check, stdin=stdin, stdout=stdout, stderr=stderr)
17
18
19def _pypi_push(dist):

Callers 2

_pypi_pushFunction · 0.85
deployFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected