When running manage.py test, Mezzanine's utils/conf.py automatically sets 
settings.TESTING = True. A few lines later, it forks based on the TESTING 
setting:

If TESTING is False, then South and OPTIONAL_APPS are added to 
INSTALLED_APPS.
If TESTING is True, then those apps are NOT added, and furthermore 
django.contrib.redirects is removed from INSTALLED_APPS.

1. What is the rationale for removing django.contrib.redirects during 
testing?
2. What is the rationale for removing South during testing?
3. Why aren't the optional apps loaded during testing?
4. How can we override or prevent these configurations?

Thanks,
Shawn

-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to