i\'m starting the TDD development attitude and am writting unit-tests for my django application. I\'m aware of fixtures and know that\'s the way tests should be executed, bu
This TEST_RUNNER works on Django 1.3
from django.test.simple import DjangoTestSuiteRunner as TestRunner class DjangoTestSuiteRunner(TestRunner): def setup_databases(self, **kwargs): pass def teardown_databases(self, old_config, **kwargs): pass