blob: c78599a01d0dec3cb719671215f7c11c3adee04c [file] [log] [blame]
# Copyright 2020 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.
PYTHON_VERSION_COMPATIBILITY = 'PY2+3'
DEPS = [
'buildbucket',
'step',
]
def RunSteps(api):
tags = api.buildbucket.tags(k1='v1', k2=['v2', 'v2_1'])
api.buildbucket.add_tags_to_current_build(tags)
api.buildbucket.hide_current_build_in_gerrit()
def GenTests(api):
yield api.test('basic')