(self, result)
| 23 | self.coverage_files, self.coverage = start_coverage_support(self.configuration) |
| 24 | |
| 25 | def finalize(self, result): |
| 26 | # Called after all tests are run (it's always called, with multiprocess or not) |
| 27 | self.coverage.stop() |
| 28 | self.coverage.save() |
| 29 | |
| 30 | pydev_runfiles_xml_rpc.notifyTestRunFinished("Finished in: %.2f secs." % (time.time() - self.start_time,)) |
| 31 | |
| 32 | # =================================================================================================================== |
| 33 | # Methods below are not called with multiprocess (so, we monkey-patch MultiProcessTestRunner.consolidate |
nothing calls this directly
no test coverage detected