Skip to content

Instantly share code, notes, and snippets.

@zmcghee
Created February 9, 2012 18:05
Show Gist options
  • Save zmcghee/1781646 to your computer and use it in GitHub Desktop.
Save zmcghee/1781646 to your computer and use it in GitHub Desktop.
from django.test.simple import DjangoTestSuiteRunner
class NoDbDjangoTestSuiteRunner(DjangoTestSuiteRunner):
def setup_databases(self, **kwargs):
return [], []
def teardown_databases(self, old_config, **kwargs):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment