blob: e98a5c671c120c60afdead417a719307d0809a14 [file] [log] [blame]
# Copyright 2020 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.
PYTHON_VERSION_COMPATIBILITY = 'PY3'
DEPS = [
'recipe_engine/step',
]
def RunSteps(api):
"""Recipe to run flutter plugin publish."""
# For now we only echo to test if this recipe runs.
api.step('report', ['echo', 'Complete publishing plugins (tests)]'])
def GenTests(api):
yield api.test('basic')