Re: Error with test database

2012-02-08 Thread xina towner
It does not work U_U On 8 February 2012 14:19, Renne Rocha wrote: > The order in which the tables are created depends on the order in which > you have them in your INSTALLED_APPS. > Try moving the app you want to be created first before the others. > > Renne Rocha > http://rennerocha.com

Re: Error with test database

2012-02-08 Thread Renne Rocha
The order in which the tables are created depends on the order in which you have them in your INSTALLED_APPS. Try moving the app you want to be created first before the others. Renne Rocha http://rennerocha.com/ On Wed, Feb 8, 2012 at 11:07 AM, xina towner wrote: > I've already done th

Re: Error with test database

2012-02-08 Thread xina towner
Can I specify to test tool to use an specific database? On 8 February 2012 14:07, xina towner wrote: > I've already done that, > this works with databases, but with tables too? > > > On 8 February 2012 14:04, Renne Rocha wrote: > >> You can configure the setting TEST_DEPENDENCIES. See the doc

Re: Error with test database

2012-02-08 Thread xina towner
I've already done that, this works with databases, but with tables too? On 8 February 2012 14:04, Renne Rocha wrote: > You can configure the setting TEST_DEPENDENCIES. See the docs for more > info: > > > https://docs.djangoproject.com/en/1.3/topics/testing/#controlling-creation-order-for-test-

Re: Error with test database

2012-02-08 Thread Renne Rocha
You can configure the setting TEST_DEPENDENCIES. See the docs for more info: https://docs.djangoproject.com/en/1.3/topics/testing/#controlling-creation-order-for-test-databases Renne Rocha http://rennerocha.com/ On Wed, Feb 8, 2012 at 10:57 AM, xina towner wrote: > Hello, I've a prob

Error with test database

2012-02-08 Thread xina towner
Hello, I've a problem, I have to created a script that makes my database in a specifically order but when I want to make test django do it in a different order. How can I solve this? because it can't create the database so I can't test my app. Can I change the order how django initiates the datab