blob: f9b9d534dc1bfb4fc4063b2603aa463c47e891d0 [file] [log] [blame]
# Copyright 2019 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 = [
'cq',
'properties',
'step',
]
def RunSteps(api):
api.step('show properties', [])
api.step.active_result.presentation.logs['result'] = [
'state: %s' % (api.cq.state,),
]
def GenTests(api):
yield api.test('inactive') + api.cq()
yield api.test('dry') + api.cq(dry_run=True)
yield api.test('full') + api.cq(full_run=True)