Beispiel #1
0
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()
Beispiel #2
0
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()
Beispiel #3
0
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()
Beispiel #4
0
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()
Beispiel #5
0
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()
Beispiel #6
0
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()
Beispiel #7
0
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()
Beispiel #8
0
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()
Beispiel #9
0
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()