尝试在文件夹中包含多个测试文件时,在__init__.py中导入错误

时间:2016-07-22 18:06:19

标签: python django

我无法在Django应用中的测试文件夹中导入我的测试文件。我尝试运行python manage.py test时遇到导入错误(见下图):

我的项目结构如下:

Blog
 -- migrations
 -- static
 -- templates
 -- tests
   |-- __init__.py
   |-- test_views.py
   |-- test_forms.py
   |-- test_models.py
 -- __init__.py
 -- admin.py
 -- apps.py
 -- forms.py
 -- models.py
 -- urls.py
 -- views.py

tests文件夹中的 __ init __。py 是:

from test_views import *

Python Import Error

感谢您的帮助,如果有人可以将我链接到一个我可以作为参考的优秀django项目,那将会非常有用!

0 个答案:

没有答案