Re: Static vs variable test fixtures

2008-10-13 Thread Alex Koshelev
After `testFOO` method call test case flushes all data in database. So if you want to add some logic at this stage - flushing procedure may take a lot of time and you will get no speed improvements. On Oct 14, 5:18 am, Simon Litchfield <[EMAIL PROTECTED]> wrote: > Reloading of fixtures for each t

Static vs variable test fixtures

2008-10-13 Thread Simon Litchfield
Reloading of fixtures for each test gets painful when the fixtures get big. Maybe we could continue to have TestCase.fixtures as a list of 'variable' fixtures that do definitely need to be reloaded for each test... and add a new optional attribute, TestCase.static_fixtures, which would be a list