0
在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?
這是爲什麼?
我該如何解決?
請檢查'app'中是否有'tests.py'或'tests.pyc'文件,即與'tests'模塊處於同一級別。 –