(self,cmd)
| 98 | return out |
| 99 | |
| 100 | def run_single_to_str(self,cmd): |
| 101 | out = subprocess.check_output(cmd, env=self.env, stderr=subprocess.STDOUT, shell=True).decode('utf-8') |
| 102 | if (len(out.strip()) > 0): |
| 103 | logger.debug(out) |
| 104 | logger.debug("%s returned" % cmd) |
| 105 | return out |
no outgoing calls
no test coverage detected