| Index: native_client_sdk/PRESUBMIT.py
|
| diff --git a/native_client_sdk/PRESUBMIT.py b/native_client_sdk/PRESUBMIT.py
|
| index 85797b786134d22529436c316196528d38eac255..dc0b66c12405be45b4b9abd67db54afeb9e051b3 100644
|
| --- a/native_client_sdk/PRESUBMIT.py
|
| +++ b/native_client_sdk/PRESUBMIT.py
|
| @@ -16,8 +16,11 @@ def CommonChecks(input_api, output_api):
|
| 'R0401', # Cyclic import
|
| 'W0613', # Unused argument
|
| 'E1103', # subprocess.communicate() generates these :(
|
| + 'R0201', # method could be function (doesn't reference self)
|
| ]
|
| - black_list = [r'src/build_tools/tests/.*']
|
| + black_list = [r'src/build_tools/tests/.*',
|
| + r'src/site_scons/.*',
|
| + ]
|
| canned = input_api.canned_checks
|
| output.extend(canned.RunPylint(input_api, output_api, black_list=black_list,
|
| disabled_warnings=disabled_warnings))
|
|
|