X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/753e8bf1e2fe3ccc0a21166cc7da1d88c08bbb89..11d3d14d1e6cf73032b7038825e6823ddd89e8f3:/redakcja/settings/test.py

diff --git a/redakcja/settings/test.py b/redakcja/settings/test.py
index 1997c967..80b9a3d7 100644
--- a/redakcja/settings/test.py
+++ b/redakcja/settings/test.py
@@ -20,17 +20,22 @@ DATABASES = {
 import tempfile
 
 CATALOGUE_REPO_PATH = tempfile.mkdtemp(prefix='redakcja-repo')
+CATALOGUE_IMAGE_REPO_PATH = tempfile.mkdtemp(prefix='redakcja-repo-img')
+MEDIA_ROOT = tempfile.mkdtemp(prefix='media-root')
+CELERY_ALWAYS_EAGER = True
 
 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"