Re: Django testing not loading certain fixtures

2010-12-23 Thread churris
Are you loading you fixtures within your test class? eg. fixtures = ['my_fixture.xml'] Make sure that also you have included in yoour settings file the following: FIXTURE_DIRS = ( os.path.join(PROJECT_PATH, '../testing/fixtures') of course with the path where you fixture is. Hope this helps

Re: Are multiple databases supported by the testing framework?

2010-11-14 Thread churris
Hi Ramiro, I've tried that, but those notes are just to flush the second db, but in this case, the issue is that the database is not even getting created at all. On Nov 15, 8:59 am, Ramiro Morales <cra...@gmail.com> wrote: > On Sun, Nov 14, 2010 at 6:41 PM, churris <churri...@hotmai

Are multiple databases supported by the testing framework?

2010-11-14 Thread churris
I'm using django 1.2, and I had to setup a second database on my project. As soon as I setup the second connection and the router on my project, all my test cases which aren't even referring to that second database started to fail. Running the application works fine, syncdb works fine, is just the