Lines Matching full:check_call
35 quiet: (boolean) suppress stdout on check_call and call.
44 def check_call(self, *args, **kwargs):
45 """Wrapper for subprocess.check_call().
48 *args: to be passed to subprocess.check_call()
49 **kwargs: to be passed to subprocess.check_call()
51 Whatever subprocess.check_call() returns.
53 OSError or subprocess.CalledProcessError: raised by check_call.
59 return subprocess.check_call(*args, stdout=devnull, **kwargs)
61 return subprocess.check_call(*args, **kwargs)
67 *args: to be passed to subprocess.check_call()
68 **kwargs: to be passed to subprocess.check_call()