From df1e505d9f99e557b22270365c90f9517a19bd27 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Fri, 2 Mar 2012 00:05:13 +0000 Subject: [PATCH] Added a default SECRET_KEY setting to the default test sesttings (refs #17800). git-svn-id: http://code.djangoproject.com/svn/django/trunk@17614 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/test_sqlite.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_sqlite.py b/tests/test_sqlite.py index 17e786f4ff..41c3b25b68 100644 --- a/tests/test_sqlite.py +++ b/tests/test_sqlite.py @@ -20,3 +20,5 @@ DATABASES = { 'ENGINE': 'django.db.backends.sqlite3', } } + +SECRET_KEY = "django_tests_secret_key"