(self)
| 75 | def force_start(self): |
| 76 | self._is_external = False |
| 77 | def _get_output(self): |
| 78 | if not self.process: |
| 79 | return '' |
| 80 | return '' if REDIS_SHOW_OUTPUT else self.process.stdout.read() |
| 81 | |
| 82 | def _start_process(self): |
| 83 | if self._is_external: |
no outgoing calls
no test coverage detected