py.test
パッケージで実行しようとしていますがsetup.py
、除外しようとしてもプロジェクトのルート ディレクトリから解析しようとしています。
テスト クラスはモジュールに含まれているため、*.py ファイルからテストを収集する必要があります。
# setup.cfg
[pytest]
norecursedirs = .svn _build tmp* lib/third lib *.egg bin distutils setup.py
python_files = *.py
それでも実行py.test
すると、ERROR collecting setup.py
すでに除外したものが表示されます。
/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/distutils/core.py:140: in setup
> raise SystemExit, gen_usage(dist.script_name) + "\nerror: %s" % msg
E SystemExit: usage: py.test [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
E or: py.test --help [cmd1 cmd2 ...]
E or: py.test --help-commands
E or: py.test cmd --help
E
E error: no commands supplied