X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/ce8d791a5298e0cb2569034aec4c8b57afac97b2..ff51d1e22f9c2ddb8e2a9fd45bebfa23ebf53da1:/redakcja/settings/test.py?ds=sidebyside

diff --git a/redakcja/settings/test.py b/redakcja/settings/test.py
index f6e90803..5fbd59f5 100644
--- a/redakcja/settings/test.py
+++ b/redakcja/settings/test.py
@@ -6,22 +6,31 @@ 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
 
-CATALOGUE_REPO_PATH = tempfile.mkdtemp(prefix='wikirepo')
+CATALOGUE_REPO_PATH = tempfile.mkdtemp(prefix='redakcja-repo')
+USE_CELERY = False
 
-INSTALLED_APPS += ('django_nose',)
+INSTALLED_APPS += ('django_nose', 'dvcs.tests')
 
-TEST_RUNNER = 'django_nose.run_tests'
+TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
 TEST_MODULES = ('catalogue', 'dvcs.tests', 'wiki', 'toolbar')
+COVER_APPS = ('catalogue', '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',