I\'m attempting to upgrade quite a large Django project to the newly released Django 1.4, and I\'m having some issues when running python manage.py test.
My solutuion was to upgrade django to the newest cersion:
pip install --upgrade django==1.6.1
before this, check your installed version:
pip freeze | grep Django
- I found that on release server there was an old version, upgrade solved this issue!