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