blob: 6fad25bf0f0cfc386e177450b5311012be81db24 [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 = 'PY2+3'
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')