From 3aa313225572465f5a837d1632063e99c2d4f3f0 Mon Sep 17 00:00:00 2001 From: Bojan Mihelac Date: Fri, 30 Mar 2012 15:25:45 +0200 Subject: [PATCH] Fix for #28 --- dbtemplates/test_settings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dbtemplates/test_settings.py b/dbtemplates/test_settings.py index 8fbdf1d..55c5e87 100644 --- a/dbtemplates/test_settings.py +++ b/dbtemplates/test_settings.py @@ -1,9 +1,12 @@ DBTEMPLATES_CACHE_BACKEND = 'dummy://' DATABASE_ENGINE = 'sqlite3' +# SQLite does not support removing unique constraints (see #28) +SOUTH_TESTS_MIGRATE = False SITE_ID = 1 + INSTALLED_APPS = [ 'django.contrib.contenttypes', 'django.contrib.sites',