(self, stats)
| 27 | results.skipped) |
| 28 | |
| 29 | def accumulate(self, stats): |
| 30 | self.tests_run += stats.tests_run |
| 31 | self.failures += stats.failures |
| 32 | self.skipped += stats.skipped |
| 33 | |
| 34 | |
| 35 | # Avoid enum.Enum to reduce the number of imports when tests are run |
no outgoing calls
no test coverage detected