blob: 19ee211293cc207c1c99950883ad43a741ac805e [file] [log] [blame]
# Copyright 2015 The LUCI Authors. All rights reserved.
# Use of this source code is governed under the Apache License, Version 2.0
# that can be found in the LICENSE file.
DEPS = ['step']
def RunSteps(api):
api.step('Dont subannotate me', ['echo', '@@@BUILD_STEP@steppy@@@'])
api.step('Subannotate me',
['echo', '@@@BUILD_STEP@pippy@@@'],
allow_subannotations=True)
def GenTests(api):
yield api.test('basic')