github.com からダウンロードしたトルネードのバージョンを sys.path に追加して、テストを実行しようとしています。
[tests]
recipe = zc.recipe.testrunner
extra-paths = ${buildout:directory}/parts/tornado/
defaults = ['--auto-color', '--auto-progress', '-v']
しかし、bin/tests を実行すると、次のエラーが発生します。
ImportError: No module named tornado
extra-paths の使用方法を理解していませんか?
マーティン