本文整理汇总了Python中invoke.Collection方法的典型用法代码示例。如果您正苦于以下问题:Python invoke.Collection方法的具体用法?Python invoke.Collection怎么用?Python invoke.Collection使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类invoke
的用法示例。
在下文中一共展示了invoke.Collection方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: execute_cleanup_tasks
# 需要导入模块: import invoke [as 别名]
# 或者: from invoke import Collection [as 别名]
def execute_cleanup_tasks(ctx, cleanup_tasks, dry_run=False):
"""Execute several cleanup tasks as part of the cleanup.
REQUIRES: ``clean(ctx, dry_run=False)`` signature in cleanup tasks.
:param ctx: Context object for the tasks.
:param cleanup_tasks: Collection of cleanup tasks (as Collection).
:param dry_run: Indicates dry-run mode (bool)
"""
executor = Executor(cleanup_tasks, ctx.config)
for cleanup_task in cleanup_tasks.tasks:
print("CLEANUP TASK: %s" % cleanup_task)
executor.execute((cleanup_task, dict(dry_run=dry_run)))
示例2: add_tasks
# 需要导入模块: import invoke [as 别名]
# 或者: from invoke import Collection [as 别名]
def add_tasks(module, prefix=None):
if prefix is None:
prefix = module.__name__.rsplit('.', 1)[-1]
child_namespace = invoke.Collection.from_module(module)
for name in child_namespace.task_names:
if name in namespace.task_names:
raise ValueError('duplicate task {}'.format(name))
namespace.add_task(child_namespace[name], name=name)