我正在尝试将pep8 checker testcase添加到我的Django 1.8项目中。我找到了这个包:https://github.com/TracyWebTech/django-test-pep8
如果我遵循除了INSTALLED_APPS部分之外的README.md安装指南,因为在我的项目中它是一个字符串列表:
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'test_pep8',
)
所以我把它作为字符串添加而不是在settings.py中导入它。
当我运行./manage.py test
时,stylecheck无效。如果我运行./manage.py test test_pep8
就行了。
我的假设是:
python manage.py startapp polls
下的django tutorial)。 - 我尝试添加admin.py和迁移包,但我可能做错了。如何让它正常工作?
答案 0 :(得分:1)
此问题存在GitHub问题:https://github.com/TracyWebTech/django-test-pep8/issues/1
使用包含以下内容的附加测试文件解决了这个问题:
range.insertNode()