Skip to content

Instantly share code, notes, and snippets.

@bmihelac
Created September 4, 2014 11:19
Show Gist options
  • Save bmihelac/37643a8a84523535f172 to your computer and use it in GitHub Desktop.
Save bmihelac/37643a8a84523535f172 to your computer and use it in GitHub Desktop.
Django 1.7. - use sqlite, no migrations in tests
import sys
if 'test' in sys.argv:
DATABASES = {'default': {'ENGINE': 'django.db.backends.sqlite3'}}
MIGRATION_MODULES = dict([(app, 'myapp.migrations_not_used_in_tests')
for app in INSTALLED_APPS])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment