我正在尝试使用nosetests 在我的项目中运行所有测试用例。
我 cd 到我的项目目录:
cd projects/myproject
然后我做:
nosetests
哪个输出:
----------------------------------------------------------------------
Ran 0 tests in 0.001s
OK
在 projects/myproject 我有一个名为 Encode 的包,在包内我有包含测试的 Test 目录:
Encode/
__init__.py
Video.py
Ffmpeg.py
Test/
VideoTest.py
FfmpegTest.py
为什么鼻子测试没有检测到我的单元测试?我所有的单元测试类都扩展了 unittest.TestCase。