X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/1b718c10066557540770bb0960a773dce0ad4462..7319409f3463bce5b12e72a6ba18580ec9a9c029:/redakcja/settings/test.py diff --git a/redakcja/settings/test.py b/redakcja/settings/test.py index 47622577..d667ddd7 100644 --- a/redakcja/settings/test.py +++ b/redakcja/settings/test.py @@ -20,12 +20,14 @@ 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(COVER_APPS), @@ -34,3 +36,5 @@ NOSE_ARGS = ( '--with-xunit', '--with-xcoverage', ) + +SECRET_KEY = "not-so-secret"