On Jan 19, 2008 10:24 PM, Jim Crossley <[EMAIL PROTECTED]> wrote:
> Yes, I knew I could override the NAME, but I'd like to override the
> ENGINE,USER,PASSWORD,HOST, and PORT, too.  Our settings are configured
> for mysql/innodb, to match our production environment.  But as our
> test suite and initial_data grows, it takes a frustratingly long time
> to run the tests.  I'd like to use the faster sqlite, but just for the
> tests.  Can you suggest an approach?

Yes. Create another settings file, and in it put the following:

from your_real_settings import *

DATABASE_ENGINE = 'sqlite3'
DATABASE_HOST = '/some/filename/'

etc...


-- 
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to