Home | History | Annotate | Download | only in bot

Lines Matching refs:patches

51         # should move to feeding patches one at a time like the EWS does.
56 patches = self._validate_patches()
57 patches = self._patches_with_acceptable_review_flag(patches)
58 patches = sorted(patches, self._patch_cmp)
59 patch_ids = [patch.id() for patch in patches]
65 # Filters out patches with r? or r-, only r+ or no review are OK to land.
66 def _patches_with_acceptable_review_flag(self, patches):
67 return [patch for patch in patches if patch.review() in [None, '+']]
70 # Not using BugzillaQueries.fetch_patches_from_commit_queue() so we can reject patches with invalid committers/reviewers.