Re: Project-wide tests

2010-10-09 Thread diogobaeder
I think I'll use Christoph's aproach, since it won't pollute any of the other apps. Thank you, guys! :-) Diogo On 9 out, 10:40, Christoph wrote: > Hi Diogo, > > I had the same problem (and so did others as I found out). As far as I > am aware, there isn't a decent solution. Roberto's approach

Re: Project-wide tests

2010-10-09 Thread Christoph
Hi Diogo, I had the same problem (and so did others as I found out). As far as I am aware, there isn't a decent solution. Roberto's approach would work, alternatively I always ended up creating an app "test" in my project where I then write the tests in. Best regards, Christoph On Oct 9, 12:07 a

Re: Project-wide tests

2010-10-08 Thread Roberto Benitez
One thing you can do is to call your "out of django" app test process from one of your django app test modules. Roberto On Fri, Oct 8, 2010 at 11:00 PM, diogobaeder wrote: > Hi there, > > I know that the testing facilities from Django read "test" modules > inside all the installed apps, but is t

Project-wide tests

2010-10-08 Thread diogobaeder
Hi there, I know that the testing facilities from Django read "test" modules inside all the installed apps, but is there a way to include a test from outside the apps, for example a "test" module located in the project root? I'm trying to do this so that I can build an end-to-end test that involv