| Index: appengine/findit/handlers/config.py
|
| diff --git a/appengine/findit/handlers/config.py b/appengine/findit/handlers/config.py
|
| index 59b8191482f868db986bb86e1cadc96ae60501e8..1916a6b30cea98974ed65a1aa507216b8c001cd2 100644
|
| --- a/appengine/findit/handlers/config.py
|
| +++ b/appengine/findit/handlers/config.py
|
| @@ -141,6 +141,9 @@ def _ValidateTrybotMapping(builders_to_trybots):
|
| if (trybot_config.has_key('strict_regex') and
|
| not isinstance(trybot_config['strict_regex'], bool)):
|
| return False
|
| + if (trybot_config.has_key('not_run_tests') and
|
| + not isinstance(trybot_config['not_run_tests'], bool)):
|
| + return False
|
| return True
|
|
|
|
|
|
|