本文介绍了运行测试时,Mezzanine ImportError的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我最近将Django的版本从1.5.5升级到1.6.2,将Mezzanine升级到3.0.9。



当我运行

  python manage.py test 



但是当我使用

运行项目特定的测试时

  python manage.py test< project-name> 

然后我得到ImportError。



这里是堆栈跟踪。请帮助。



解决方案

django-debug-toolbar模块导致此问题。



我从django-debug-toolbar v1.0.1回滚到v0.11。



这修复了错误。


I have recently upgraded the version of Django from 1.5.5 to 1.6.2 and Mezzanine to 3.0.9.

When I run

python manage.py test

All the tests run without problem.

But When I run project specific tests using

python manage.py test <project-name>

Then I get ImportError. I get that its something to do with Circular Imports.

Here is the stack trace. Please help.

解决方案

django-debug-toolbar module was causing the issue.

I rolled back from django-debug-toolbar v1.0.1 to v0.11.

This fixed the error.

这篇关于运行测试时,Mezzanine ImportError的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 12:13