(self)
| 18 | Plugin.__init__(self) |
| 19 | |
| 20 | def begin(self): |
| 21 | # Called before any test is run (it's always called, with multiprocess or not) |
| 22 | self.start_time = time.time() |
| 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) |
no test coverage detected