blob: 96c1e244c680ad30b1aaaf42d799c594cd278689 [file] [log] [blame]
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
DEPS = [
'goma',
'recipe_engine/properties',
]
def RunSteps(api):
client_type = api.m.properties.get('client_type')
api.goma.ensure_goma(client_type=client_type)
def GenTests(api):
yield (
api.test('non_canary') +
api.properties(client_type='release')
)
yield (
api.test('canary') +
api.properties(client_type='candidate')
)
yield (
api.test('latest') +
api.properties(client_type='latest')
)