blob: 542946aff8faafff54ed2d62a3b884818c182ab9 [file] [log] [blame]
# Copyright 2017 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from recipe_engine.post_process import StatusSuccess
DEPS = [
'commit_queue',
]
def RunSteps(api):
api.commit_queue.all_tryjobs()
# Repeated call just to check caching works.
api.commit_queue.all_tryjobs()
def GenTests(api):
yield (
api.test('basic') +
api.commit_queue.test_data() +
api.post_process(StatusSuccess)) # yapf: disable