MCPcopy Create free account
hub / github.com/apache/impala / _check_output

Function _check_output

docker/test-with-docker.py:395–398  ·  view source on GitHub ↗

Wrapper for subprocess.check_output, with logging.

(*args, **kwargs)

Source from the content-addressed store, hash-verified

393
394
395def _check_output(*args, **kwargs):
396 """Wrapper for subprocess.check_output, with logging."""
397 logging.info("Running: %s, %s; cmdline: %s.", args, kwargs, " ".join(*args))
398 return subprocess.check_output(*args, universal_newlines=True, **kwargs)
399
400
401def _make_dir_if_not_exist(*parts):

Callers 3

__init__Method · 0.85
_create_containerMethod · 0.85
_create_build_imageMethod · 0.85

Calls 1

joinMethod · 0.45

Tested by

no test coverage detected