X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/56145861cf5fa01c5fbb429d40242e0a16189ed1..e0f595e44766e352edfce0aaf5d32be57f448882:/src/redakcja/settings/test.py diff --git a/src/redakcja/settings/test.py b/src/redakcja/settings/test.py index 907fbc77..dba64b6b 100644 --- a/src/redakcja/settings/test.py +++ b/src/redakcja/settings/test.py @@ -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',) @@ -30,3 +26,16 @@ SECRET_KEY = "not-so-secret" LITERARY_DIRECTOR_USERNAME = 'Kaowiec' + +MIN_COVER_SIZE = (1, 1) + + +class DisableMigrations(object): + + def __contains__(self, item): + return True + + def __getitem__(self, item): + return None + +MIGRATION_MODULES = DisableMigrations()