I\'m running this command:
python manage.py test project.apps.app1.tests
and it causes this error:
AttributeError: \
I had the same error as Chris. I had deleted an old model, then run tests.py, but another file (views.py) was still trying to import the deleted model.
When I took out the now-obsolete import statement, problem solved.