(self, message)
| 1494 | self.PrintInfo(f"Total errors found: {self.error_count}\n") |
| 1495 | |
| 1496 | def PrintInfo(self, message): |
| 1497 | # _quiet does not represent --quiet flag. |
| 1498 | # Hide infos from stdout to keep stdout pure for machine consumption |
| 1499 | if not _quiet and self.output_format not in _MACHINE_OUTPUTS: |
| 1500 | sys.stdout.write(message) |
| 1501 | |
| 1502 | def PrintError(self, message): |
| 1503 | if self.output_format == "junit": |
no outgoing calls
no test coverage detected