Chromium Code Reviews| Index: client/PRESUBMIT.py |
| diff --git a/client/PRESUBMIT.py b/client/PRESUBMIT.py |
| index 86b37973503bdf199146cf816f81fe510e2f8d64..f159a7bb0622b19759b3144ffe8b1b326318561c 100644 |
| --- a/client/PRESUBMIT.py |
| +++ b/client/PRESUBMIT.py |
| @@ -44,7 +44,10 @@ def CommonChecks(input_api, output_api): |
| unit_tests = input_api.canned_checks.GetUnitTestsRecursively( |
| input_api, output_api, |
| input_api.os_path.join(input_api.PresubmitLocalPath()), |
| - whitelist=[r'.+_test\.py$'], |
| + whitelist=[ |
| + r'.+_test\.py$', |
| + r'.*tests\.py$', |
|
M-A Ruel
2016/06/22 14:21:31
Please rename test instead of creating a one-off
mithro
2016/06/23 07:10:54
Done.
|
| + ], |
| blacklist=blacklist) |
| output.extend(input_api.RunTests(unit_tests)) |
| return output |