我在我们的项目中使用Hudson进行持续集成。我们使用python、git 和nose 测试进行单元测试。我需要的是 Hudson 应该在每次构建后执行鼻子测试。为此,我在执行 shell 部分添加了以下 shell 脚本。
$ nosetests /sub/test_sample1.py
$ nosetests /sub/test_sample2.py
$ nosetests /sub/test_sample3.py
...
Hudson 正在正确执行这些脚本。但问题是,如果任何测试脚本在这里失败,它就不会在它旁边运行其他脚本。它在第一个错误后停止。我希望它应该继续执行所有测试用例。我怎样才能做到这一点?