我似乎没有得到预期的工作。我似乎无法真正抓住提示。
这是我所拥有的:
with settings(hide('commands', 'warnings') , warn_only=True):
prompts = expect('Are you sure you want to perform this operation? [Y/N]:', 'N')
with expecting(prompts):
run(sudo("/something.sh apply /some.file" , user="someuser"))
我很确定我做错了什么。