X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/1fbf854ce423d2d56723ff10608267403f4916b0..e81283e08cca4c47d57dd0aef34a5c598931a9d2:/redakcja/settings/test.py diff --git a/redakcja/settings/test.py b/redakcja/settings/test.py index 118c7ffb..cd131787 100644 --- a/redakcja/settings/test.py +++ b/redakcja/settings/test.py @@ -6,23 +6,39 @@ from redakcja.settings.common import * # ROOT_URLCONF = 'yourapp.settings.test.urls' -DATABASE_ENGINE = 'sqlite3' -DATABASE_NAME = ':memory:' +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. + 'NAME': '', # Or path to database file if using sqlite3. + 'USER': '', # Not used with sqlite3. + 'PASSWORD': '', # Not used with sqlite3. + 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. + 'PORT': '', # Set to empty string for default. Not used with sqlite3. + } +} import tempfile -WIKI_REPOSITORY_PATH = tempfile.mkdtemp(prefix='wikirepo') +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 += ('django_nose',) +INSTALLED_APPS += ('django_nose', 'dvcs.tests') -TEST_RUNNER = 'django_nose.run_tests' -TEST_MODULES = ('wiki', 'toolbar', 'vstorage') +TEST_RUNNER = 'django_nose.NoseTestSuiteRunner' +TEST_MODULES = ('catalogue', 'cover', 'dvcs.tests', 'wiki', 'toolbar') +COVER_APPS = ('catalogue', 'cover', 'dvcs', 'wiki', 'toolbar') NOSE_ARGS = ( '--tests=' + ','.join(TEST_MODULES), - '--cover-package=' + ','.join(TEST_MODULES), + '--cover-package=' + ','.join(COVER_APPS), '-d', - '--with-coverage', '--with-doctest', '--with-xunit', '--with-xcoverage', ) + +SECRET_KEY = "not-so-secret" + + +LITERARY_DIRECTOR_USERNAME = 'Kaowiec'