(self, message)
| 1539 | self.PrintInfo(f"Total errors found: {self.error_count}\n") |
| 1540 | |
| 1541 | def PrintInfo(self, message): |
| 1542 | # _quiet does not represent --quiet flag. |
| 1543 | # Hide infos from stdout to keep stdout pure for machine consumption |
| 1544 | if not _quiet and self.output_format not in _MACHINE_OUTPUTS: |
| 1545 | sys.stdout.write(message) |
| 1546 | |
| 1547 | def PrintError(self, message): |
| 1548 | if self.output_format == "junit": |
no test coverage detected