()
| 315 | def show(self) -> None: |
| 316 | header("Run summary") |
| 317 | print(f"Successful: {len(self.ok)}") |
| 318 | print(f"Warnings: {len(self.warn)}") |
| 319 | print(f"Failed: {len(self.failed)}") |
| 320 | if self.warn: |
| 321 | print(c("\nWarnings:", C.WARN)) |
| 322 | for item in self.warn: |
no outgoing calls
no test coverage detected