目前我的代码按以下树形结构组织:
src/
module1.py
module2.py
test_module1.py
test_module2.py
subpackage1/
__init__.py
moduleA.py
moduleB.py
test_moduleA.py
test_moduleB.py
其中module*.py
文件包含源代码,并且test_module*.py
包含TestCase
相关模块的 s。
使用以下命令,我可以运行包含在单个文件中的测试,例如:
$ cd src
$ nosetests test_filesystem.py
..................
----------------------------------------------------------------------
Ran 18 tests in 0.390s
OK
如何运行所有测试?我试过了,nosetests -m 'test_.*'
但它不起作用。
$cd src
$ nosetests -m 'test_.*'
----------------------------------------------------------------------
Ran 0 tests in 0.000s
OK
谢谢