Django 1.8 では、次の設定のアプリがあります。
app
|- tests/
| |- test_ook.py
| |- __init__.py
|- models.py
|- __init__.py
...
を実行するpython manage.py test -v 2 app
と、次のエラーが表示されます。
ImportError: 'tests' module incorrectly imported from '/home/.../site/app/tests'. Expected '/home/.../site/app'. Is this module globally installed?
どうしてこれなの?
どうすれば修正できますか?