Runs a subprocess shell with check=True by default
(cmd, check=True, stdin=None, stdout=None, stderr=None)
| 12 | |
| 13 | |
| 14 | def _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 | |
| 19 | def _pypi_push(dist): |
no outgoing calls
no test coverage detected