現在、私のコードは次のツリー構造で編成されています。
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
れ、関連するモジュールの が含まれます。
次のコマンドを使用すると、たとえば、単一のファイルに含まれるテストを実行できます。
$ 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
ありがとう