(self)
| 575 | self._stop_running_processes() |
| 576 | |
| 577 | def tearDown(self): |
| 578 | super(IntegrationTestCase, self).tearDown() |
| 579 | self._stop_running_processes() |
| 580 | |
| 581 | def _stop_running_processes(self): |
| 582 | # Make sure we kill all the processes on teardown so they don't linger around if an |
nothing calls this directly
no test coverage detected