(self)
| 33 | self.timeout = timeout |
| 34 | |
| 35 | def run(self): |
| 36 | self.p = subprocess.Popen(shlex.split(self.cmd), stderr=subprocess.PIPE, stdout=subprocess.PIPE) |
| 37 | self.out, self.err = self.p.communicate() |
| 38 | |
| 39 | def execute(self): |
| 40 | """Execute python script in other process. |
no outgoing calls
no test coverage detected