(self, failure)
| 329 | return filename, line, col |
| 330 | |
| 331 | def PrintFailureOutput(self, failure): |
| 332 | output = self.GetFailureOutput(failure) |
| 333 | filename, line, column = self.GetAnnotationInfo(failure.test, failure.output) |
| 334 | print("::error file=%s,line=%d,col=%d::%s" % (filename, line, column, output.replace('\n', '%0A'))) |
| 335 | |
| 336 | class TapProgressIndicator(SimpleProgressIndicator): |
| 337 |
nothing calls this directly
no test coverage detected