我想知道这已经有一段时间了,但我无法弄清楚如何传递选项来nosetests
运行驻留在不同子目录中的不同测试。包目录结构示例:
my_package/
|-- my_module1/
|-- tests/
|-- unit/
| ... a bunch of unit tests
|-- integration/
|... a bunch of integration tests
|-- my_module2/
|-- tests/
|-- unit/
| ... a bunch of unit tests
|-- integration/
|... a bunch of integration tests
如果我只想在我的所有模块中执行单元测试(tests/unit/
子目录中的所有测试),我将如何使用nosetests 库来做到这一点?