diff options
Diffstat (limited to 'ui/events/PRESUBMIT.py')
-rw-r--r-- | ui/events/PRESUBMIT.py | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/ui/events/PRESUBMIT.py b/ui/events/PRESUBMIT.py index 345bf08..21b49a7 100644 --- a/ui/events/PRESUBMIT.py +++ b/ui/events/PRESUBMIT.py @@ -9,18 +9,12 @@ for more details on the presubmit API built into gcl. """ def GetPreferredTryMasters(project, change): - tests = set(['ash_unittests', - 'aura_unittests', - 'events_unittests', - 'keyboard_unittests', - 'views_unittests']) - return { 'tryserver.chromium.linux': { - 'linux_chromium_chromeos_rel': tests, - 'linux_chromeos_asan': tests, + 'linux_chromium_chromeos_rel_ng': set(['defaulttests']), + 'linux_chromium_chromeos_asan_rel_ng': set(['defaulttests']), }, 'tryserver.chromium.win': { - 'win_chromium_compile_dbg': tests, + 'win_chromium_compile_dbg': set(['defaulttests']), } } |