Some housekeeping
[redakcja.git] / src / redakcja / settings / test.py
index 907fbc7..4a80142 100644 (file)
@@ -1,10 +1,9 @@
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
 #
-# Nose tests
-#
-
-from redakcja.settings.common import *
+import tempfile
+from redakcja.settings import *
 
-# ROOT_URLCONF = 'yourapp.settings.test.urls'
 
 DATABASES = {
     'default': {
@@ -17,12 +16,9 @@ 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 += ('dvcs.tests',)