(self, revision)
| 531 | self.WaitForResolvingConflicts(patch_file) |
| 532 | |
| 533 | def GetVersionTag(self, revision): |
| 534 | tags = self.Git(f"tag --points-at {revision}").strip().split('\n') |
| 535 | for tag in tags: |
| 536 | sanitized_tag = SanitizeVersionTag(tag) |
| 537 | if sanitized_tag: |
| 538 | return sanitized_tag |
| 539 | |
| 540 | return None |
| 541 | |
| 542 | def GetLatestVersion(self): |
| 543 | # Use cached version if available. |
nothing calls this directly
no test coverage detected