X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/8132fc186eb0c5fd02c86828c3a4735754296d02..5913c54d19b8f6775633176032161d49f9b2f1aa:/redakcja/settings/test.py?ds=sidebyside diff --git a/redakcja/settings/test.py b/redakcja/settings/test.py deleted file mode 100644 index cd131787..00000000 --- a/redakcja/settings/test.py +++ /dev/null @@ -1,44 +0,0 @@ -# -# Nose tests -# - -from redakcja.settings.common import * - -# ROOT_URLCONF = 'yourapp.settings.test.urls' - -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 - -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', 'dvcs.tests') - -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(COVER_APPS), - '-d', - '--with-doctest', - '--with-xunit', - '--with-xcoverage', -) - -SECRET_KEY = "not-so-secret" - - -LITERARY_DIRECTOR_USERNAME = 'Kaowiec'