Wednesday, February 1, 2012

Re: Using another database while testing

You can redefine your database connection by adding somewhere at the end of your settings.py something like:
import sys
if 'test' in sys.argv:
DATABASES = ...
hope this helps.

On Wed, Feb 1, 2012 at 6:01 PM, xina towner <xinatowner@gmail.com> wrote:

I have a problem, django can't create my database because a dependency, I create it manually with a script, is there any way I can specify to the testing tool to use my database?thanks

--
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 django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.



--
This e-mail and any file transmitted with it is intended only for the person or entity to which is addressed and may contain information that is privileged, confidential or otherwise protected from disclosure. Copying, dissemination or use of this e-mail or the information herein by anyone other than the intended recipient is prohibited. If you are not the intended recipient, please notify the sender immediately by return e-mail, delete this communication and destroy all copies.

--
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 django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

No comments:

Post a Comment