Re: How can i run system level tests using djangos testing framework

2013-02-18 Thread Nikolas Stevenson-Molnar
True, but as far as I can tell, Django's testing framework seems to revolve around apps, and you need to group your system-wide test somewhere anyway, might as well be in an app. It doesn't need to have much, just a blank models.py file, and a tests.py with your tests. Alternatively, you could cre

Re: How can i run system level tests using djangos testing framework

2013-02-18 Thread calum mchaffie
I have thought about that, but would prefer not to if i can avoid it, seems alot of extras just for some tests On Tuesday, February 19, 2013 10:51:24 AM UTC+13, Nikolas Stevenson-Molnar wrote: > > How about creating a 'testing' app specifically for full-project tests? > > _Nik > > On 2/18/2013

Re: How can i run system level tests using djangos testing framework

2013-02-18 Thread Nikolas Stevenson-Molnar
How about creating a 'testing' app specifically for full-project tests? _Nik On 2/18/2013 1:48 PM, calum mchaffie wrote: > I want to be able to run my system level integration tests using > djangos LiveServerTestCase. > > It doesnt make sense to have the tests in the app as it uses more than > j

How can i run system level tests using djangos testing framework

2013-02-18 Thread calum mchaffie
I want to be able to run my system level integration tests using djangos LiveServerTestCase. It doesnt make sense to have the tests in the app as it uses more than just the app. So my problem is how do i get django to run the tests when they are in the project folder (not the app)? -- You