运行命令,并在非零退出代码时不抛出异常(ignore_errors())

outputtext

#!/bin/bash
echo hello > output
exit 1

from commandlib import Command
Command("./outputtext").ignore_errors().run()

'output' 文件将包含

hello

可执行规范

ignore-errors.story storytests 自动生成的文档。