Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Unified Diff: PRESUBMIT.py

Issue 1005583002: Revert of Ignore public API checks if COMMIT=false is in the description (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PRESUBMIT.py
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index b5397042b215a97fe8e223471f579a2d8bcf9fea..d62249a6059ce5aea4c6c210fdd97bd285b3d1ca 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -143,8 +143,6 @@
"""
results = []
results.extend(_CommonChecks(input_api, output_api))
- # TODO(rmistry): Remove the below it is only for testing!!!
- results.extend(_CheckLGTMsForPublicAPI(input_api, output_api))
return results
@@ -256,11 +254,6 @@
# It is a revert CL, ignore the public api owners check.
return results
- if re.search(r'^COMMIT=false$', issue_properties['description'], re.M):
- # Ignore public api owners check for COMMIT=false CLs since they are not
- # going to be committed.
- return results
-
match = re.search(r'^TBR=(.*)$', issue_properties['description'], re.M)
if match:
tbr_entries = match.group(1).strip().split(',')
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698