def install(ctx): with log_task("Installing...", ctx.verbose) as logger: with make_tools.with_builders(logger, root, ctx.config, ctx["exclude-tags"]) as builders: for builder in builders: if "install" in builder.tags: builder.execute()
def tail(ctx): with log_task("Tailing python.log...", ctx.verbose) as logger: with make_tools.with_builders(logger, root, ctx.config, ctx["exclude-tags"]) as builders: for builder in builders: if "tail" in builder.tags: builder.execute()
def clean(ctx): with log_task("Cleaning...", ctx.verbose) as logger: with make_tools.with_builders(logger, root, ctx.config, ctx["exclude-tags"]) as builders: for builder in reversed(builders): if "clean" in builder.tags: builder.clean()
def futes(ctx): with log_task("Running functional tests...", ctx.verbose) as logger: with make_tools.with_builders(logger, root, ctx.config, ctx["exclude-tags"]) as builders: for builder in builders: if "futes" in builder.tags: builder.execute()
def preview_settingsui(ctx): with log_task("Opening url(s) to browser...", ctx.verbose) as logger: with make_tools.with_builders(logger, root, ctx.config, ctx["exclude-tags"]) as builders: for builder in builders: if "preview-settingsui" in builder.tags: builder.execute()
def tail(ctx): with log_task("Tailing log files:", ctx.verbose) as logger: with make_tools.with_builders(logger, root, ctx.config, ctx["exclude-tags"]) as builders: for builder in builders: if "tail" in builder.tags: builder.execute()