X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/864d45abe5ec985836baf52de168943d25a03be6..5085f47552e7c265a37f9fc0e5b3413154f902f0:/src/redakcja/settings/test.py?ds=inline

diff --git a/src/redakcja/settings/test.py b/src/redakcja/settings/test.py
index 55cc3e63..4a80142f 100644
--- a/src/redakcja/settings/test.py
+++ b/src/redakcja/settings/test.py
@@ -1,5 +1,10 @@
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
+import tempfile
 from redakcja.settings import *
 
+
 DATABASES = {
     'default': {
         'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
@@ -10,12 +15,10 @@ DATABASES = {
         'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
     }
 }
-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',)