X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/1fbf854ce423d2d56723ff10608267403f4916b0..5913c54d19b8f6775633176032161d49f9b2f1aa:/redakcja/settings/test.py?ds=inline diff --git a/redakcja/settings/test.py b/redakcja/settings/test.py deleted file mode 100644 index 118c7ffb..00000000 --- a/redakcja/settings/test.py +++ /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 - -WIKI_REPOSITORY_PATH = tempfile.mkdtemp(prefix='wikirepo') - -INSTALLED_APPS += ('django_nose',) - -TEST_RUNNER = 'django_nose.run_tests' -TEST_MODULES = ('wiki', 'toolbar', 'vstorage') -NOSE_ARGS = ( - '--tests=' + ','.join(TEST_MODULES), - '--cover-package=' + ','.join(TEST_MODULES), - '-d', - '--with-coverage', - '--with-doctest', - '--with-xunit', - '--with-xcoverage', -)