Skip to content

Instantly share code, notes, and snippets.

@r4vi
Created July 21, 2015 08:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r4vi/ce68ebcd7335ff16af0d to your computer and use it in GitHub Desktop.
Save r4vi/ce68ebcd7335ff16af0d to your computer and use it in GitHub Desktop.
no db test runner
from django.test.runner import DiscoverRunner
from django.conf import settings
class NoDbTestRunner(DiscoverRunner):
""" A test runner to test without database creation """
def __init__(self, *args, **kwargs):
kwargs['top_level'] = settings.APPS_ROOT
super(NoDbTestRunner, self).__init__(*args, **kwargs)
def build_suite(self, test_labels=None, extra_tests=None, **kwargs):
test_labels = test_labels or ['apps']
return super(NoDbTestRunner, self).build_suite(
test_labels=test_labels, extra_tests=extra_tests, **kwargs
)
def setup_databases(self, **kwargs):
""" Override the database creation defined in parent class """
pass
def teardown_databases(self, old_config, **kwargs):
""" Override the database teardown defined in parent class """
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment