X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/05f67adb27390c7a9cf214e83550d3bbca88c8f2..fb13a779251552aa5b1c894d22fb068fb57324d0:/redakcja/settings/test.py

diff --git a/redakcja/settings/test.py b/redakcja/settings/test.py
index 717de290..a14e974a 100644
--- a/redakcja/settings/test.py
+++ b/redakcja/settings/test.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
 #
 # Nose tests
 #
@@ -8,8 +9,8 @@ from redakcja.settings.common import *
 
 DATABASES = {
     'default': {
-        'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
-        'NAME': '', # Or path to database file if using sqlite3.
+        'ENGINE': 'django.db.backends.sqlite3',
+        'NAME': '',
         'USER': '',                      # Not used with sqlite3.
         'PASSWORD': '',                  # Not used with sqlite3.
         'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
@@ -36,3 +37,5 @@ NOSE_ARGS = (
     '--with-xunit',
     '--with-xcoverage',
 )
+
+SECRET_KEY = "not-so-secret"