Example #1
0
def push(cookies, path, stream_name):
	# Override cookies for any new remote objects
	from forge import remote
	remote.override_cookies = cookies

	build(cookies, path, 'reload')
	with cd(path):
		forge_main.handle_primary_options(['reload', 'push', stream_name])
		forge_main.handle_secondary_options('reload', ['push', stream_name])
		forge_main.reload(['push', stream_name])
Example #2
0
def run(cookies, path, target):
	# Override cookies for any new remote objects
	from forge import remote
	remote.override_cookies = cookies

	build(cookies, path, target)
	with cd(path):
		# TODO: HAAACK, should extract an interface to the build tools
		# that both the CLI and web interfaces back onto instead of
		# simulating calls to the CLI
		forge_main.handle_primary_options(['run', '-v'])
		forge_main.handle_secondary_options('run', [target])
		forge_main.run(['--general.interactive', 'no'])
Example #3
0
def build(cookies, path, target=None):
	# Override cookies for any new remote objects
	from forge import remote
	remote.override_cookies = cookies

	with cd(path):
		# TODO: HAAACK, should extract an interface to the build tools
		# that both the CLI and web interfaces back onto instead of
		# simulating calls to the CLI
		forge_main.handle_primary_options(['build', '-v'])
		forge_main.handle_secondary_options('build', [])
		if target is None:
			forge_main.development_build(['--general.interactive', 'no'], has_target=False)
		else:
			forge_main.development_build([target, '--general.interactive', 'no'])
		_remove_stream_handlers()
Example #4
0
def migrate(cookies, path):
	"""Rewrites src/config.json appropriately for a new schema

	:param path: Path to migrate the config file for
	"""
	# Override cookies for any new remote objects
	from forge import remote
	remote.override_cookies = cookies

	with cd(path):
		# TODO: HAAACK, should extract an interface to the build tools
		# that both the CLI and web interfaces back onto instead of
		# simulating calls to the CLI
		forge_main.handle_primary_options(['migrate', '-v'])
		forge_main.handle_secondary_options('migrate', [])
		forge_main.migrate(['--general.interactive', 'no'])
Example #5
0
	def test_not_android(self, _assert_have_target_folder, _assert_have_development_folder, build):
		main.handle_secondary_options('run', ['firefox'])
		main.run([])

		generate_dynamic = build.import_generate_dynamic.return_value
		generate_dynamic.customer_goals.run_app.assert_called_once()