Rearrange source to src dir.
[redakcja.git] / redakcja / settings / test.py
diff --git a/redakcja/settings/test.py b/redakcja/settings/test.py
deleted file mode 100644 (file)
index f6e9080..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#
-# Nose tests
-#
-
-from redakcja.settings.common import *
-
-# ROOT_URLCONF = 'yourapp.settings.test.urls'
-
-DATABASE_ENGINE = 'sqlite3'
-DATABASE_NAME = ':memory:'
-
-import tempfile
-
-CATALOGUE_REPO_PATH = tempfile.mkdtemp(prefix='wikirepo')
-
-INSTALLED_APPS += ('django_nose',)
-
-TEST_RUNNER = 'django_nose.run_tests'
-TEST_MODULES = ('catalogue', 'dvcs.tests', 'wiki', 'toolbar')
-NOSE_ARGS = (
-    '--tests=' + ','.join(TEST_MODULES),
-    '--cover-package=' + ','.join(TEST_MODULES),
-    '-d',
-    '--with-coverage',
-    '--with-doctest',
-    '--with-xunit',
-    '--with-xcoverage',
-)