我正在从 shell 脚本运行 pytest 测试。脚本中的相关行类似于:pytest pytest_tests --param=$my_param根据 pytest 文档,“运行 pytest 可能会导致六个不同的退出代码”(0-5)。我的问题是如何从脚本中获取此退出代码?我试过类似的东西exit_code = pytest pytest_tests --param=$my_param
echo $exit_code但我得到了这个:exit_code: command not found我怎么才能得到它?或者有没有更好的方法在shell脚本中获得pytest结果?
添加回答
举报
0/150
提交
取消