本文整理汇总了Python中invoke.Context.cd方法的典型用法代码示例。如果您正苦于以下问题:Python Context.cd方法的具体用法?Python Context.cd怎么用?Python Context.cd使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类invoke.Context
的用法示例。
在下文中一共展示了Context.cd方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: cd_should_apply_to_sudo
# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import cd [as 别名]
def cd_should_apply_to_sudo(self, Local):
runner = Local.return_value
c = Context()
with c.cd("foo"):
c.sudo("whoami")
cmd = "sudo -S -p '[sudo] password: ' cd foo && whoami"
assert runner.run.called, "sudo() never called runner.run()!"
assert runner.run.call_args[0][0] == cmd
示例2: cd_should_apply_to_sudo
# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import cd [as 别名]
def cd_should_apply_to_sudo(self, Local):
runner = Local.return_value
ctx = Context()
with ctx.cd('foo'):
ctx.sudo('whoami')
cmd = "sudo -S -p '[sudo] password: ' cd foo && whoami"
ok_(runner.run.called, "sudo() never called runner.run()!")
eq_(runner.run.call_args[0][0], cmd)
示例3: cd_should_apply_to_run
# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import cd [as 别名]
def cd_should_apply_to_run(self, Local):
runner = Local.return_value
c = Context()
with c.cd("foo"):
c.run("whoami")
cmd = "cd foo && whoami"
assert runner.run.called, "run() never called runner.run()!"
assert runner.run.call_args[0][0] == cmd
示例4: cd_should_apply_to_run
# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import cd [as 别名]
def cd_should_apply_to_run(self, Local):
runner = Local.return_value
ctx = Context()
with ctx.cd('foo'):
ctx.run('whoami')
cmd = "cd foo && whoami"
ok_(runner.run.called, "run() never called runner.run()!")
eq_(runner.run.call_args[0][0], cmd)
示例5: cd_should_occur_before_prefixes
# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import cd [as 别名]
def cd_should_occur_before_prefixes(self, Local):
runner = Local.return_value
c = Context()
with c.prefix("source venv"):
with c.cd("foo"):
c.run("whoami")
cmd = "cd foo && source venv && whoami"
assert runner.run.called, "run() never called runner.run()!"
assert runner.run.call_args[0][0] == cmd
示例6: cd_should_occur_before_prefixes
# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import cd [as 别名]
def cd_should_occur_before_prefixes(self, Local):
runner = Local.return_value
ctx = Context()
with ctx.prefix('source venv'):
with ctx.cd('foo'):
ctx.run('whoami')
cmd = "cd foo && source venv && whoami"
ok_(runner.run.called, "run() never called runner.run()!")
eq_(runner.run.call_args[0][0], cmd)
示例7: build
# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import cd [as 别名]
def build(self, ctx: Context) -> None:
if self.platform in [SupportedPlatformEnum.WINDOWS_32, SupportedPlatformEnum.WINDOWS_64]:
if self.platform == SupportedPlatformEnum.WINDOWS_32:
arch = 'x86'
build_script = 'bld_ml32.bat'
build_platform = 'Win32'
else:
arch = 'x64'
build_script = 'bld_ml64.bat'
build_platform = 'x64'
masm_path = self.src_path / 'contrib' / f'masm{arch}'
with ctx.cd(str(masm_path)):
ctx.run(build_script)
ctx.run(f'msbuild ..\\vstudio\\vc14\\zlibvc.sln /P:Configuration=Release /P:Platform={build_platform}')
else:
# Linux/macOS build
with ctx.cd(str(self.src_path)):
ctx.run('CFLAGS="-fPIC" ./configure -static')
ctx.run('make clean')
ctx.run('make')
示例8: _build
# 需要导入模块: from invoke import Context [as 别名]
# 或者: from invoke.Context import cd [as 别名]
def _build():
"""
Build local support docs tree and return the build target dir for cleanup.
"""
c = Context()
support = join(dirname(__file__), "_support")
docs = join(support, "docs")
build = join(support, "_build")
command = "sphinx-build -c {} -W {} {}".format(support, docs, build)
with c.cd(support):
# Turn off stdin mirroring to avoid irritating pytest.
c.run(command, in_stream=False)
return build