======================== Django 1.4 gotchas ======================== * Password hasing makes unit tests `very slow `_. The solution is to switch back to MD5 hashing during when running tests:: if sys.argv[1] == 'test': PASSWORD_HASHERS = ('django.contrib.auth.hashers.MD5PasswordHasher',)