Disabling orphan headers presubmit check
It is not working correctly on Windows. I will fix tomorrow morning, but I prefer to disable it so https://codereview.webrtc.org/2823783002 can land. BUG=webrtc:7635 NOTRY=True TBR=kjellander@webrtc.org Review-Url: https://codereview.webrtc.org/2876043002 Cr-Commit-Position: refs/heads/master@{#18106}
This commit is contained in:
@ -575,7 +575,10 @@ def _CommonChecks(input_api, output_api):
|
||||
results.extend(_CheckJSONParseErrors(input_api, output_api))
|
||||
results.extend(_RunPythonTests(input_api, output_api))
|
||||
results.extend(_CheckUsageOfGoogleProtobufNamespace(input_api, output_api))
|
||||
results.extend(_CheckOrphanHeaders(input_api, output_api))
|
||||
# Disabling this because it seems to have a bug when running on Windows.
|
||||
# TODO(mbonadei): fix this and re-enable this check.
|
||||
# BUG: https://bugs.chromium.org/p/webrtc/issues/detail?id=7635
|
||||
# results.extend(_CheckOrphanHeaders(input_api, output_api))
|
||||
return results
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user