MCPcopy
hub / github.com/pex-tool/pex / check_call

Function check_call

testing/subprocess.py:56–61  ·  view source on GitHub ↗
(
    args,  # type: Sequence[str]
    **kwargs  # type: Any
)

Source from the content-addressed store, hash-verified

54
55
56def check_call(
57 args, # type: Sequence[str]
58 **kwargs # type: Any
59):
60 # type: (...) -> None
61 subprocess.check_call(args=_safe_args(args), **kwargs)
62
63
64def check_output(

Callers

nothing calls this directly

Calls 1

_safe_argsFunction · 0.85

Tested by

no test coverage detected