X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/753e8bf1e2fe3ccc0a21166cc7da1d88c08bbb89..1fcf227357f79a254f508dbe8c0fa4cd8eb7c89a:/redakcja/settings/test.py?ds=sidebyside

diff --git a/redakcja/settings/test.py b/redakcja/settings/test.py
index 1997c967..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.
@@ -20,17 +21,21 @@ DATABASES = {
 import tempfile
 
 CATALOGUE_REPO_PATH = tempfile.mkdtemp(prefix='redakcja-repo')
+MEDIA_ROOT = tempfile.mkdtemp(prefix='media-root')
+USE_CELERY = False
 
 INSTALLED_APPS += ('django_nose', 'dvcs.tests')
 
 TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
-TEST_MODULES = ('catalogue', 'dvcs.tests', 'wiki', 'toolbar')
-#COVER_APPS = ('catalogue', 'dvcs', 'wiki', 'toolbar')
+TEST_MODULES = ('catalogue', 'cover', 'dvcs.tests', 'wiki', 'toolbar')
+COVER_APPS = ('catalogue', 'cover', 'dvcs', 'wiki', 'toolbar')
 NOSE_ARGS = (
     '--tests=' + ','.join(TEST_MODULES),
-    '--cover-package=' + ','.join(TEST_MODULES),
+    '--cover-package=' + ','.join(COVER_APPS),
     '-d',
     '--with-doctest',
     '--with-xunit',
     '--with-xcoverage',
 )
+
+SECRET_KEY = "not-so-secret"