1 # -*- coding: utf-8 -*-
3 # This file is part of MIL/PEER, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
10 from redakcja.settings.common import *
13 # ROOT_URLCONF = 'yourapp.settings.test.urls'
17 'ENGINE': 'django.db.backends.sqlite3',
18 'NAME': '', # Or path to database file if using sqlite3.
19 'USER': '', # Not used with sqlite3.
20 'PASSWORD': '', # Not used with sqlite3.
21 'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
22 'PORT': '', # Set to empty string for default. Not used with sqlite3.
27 CATALOGUE_REPO_PATH = tempfile.mkdtemp(prefix='redakcja-repo')
28 MEDIA_ROOT = tempfile.mkdtemp(prefix='media-root')
31 INSTALLED_APPS += ('django_nose', 'dvcs.tests')
33 TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
34 TEST_MODULES = ('catalogue', 'dvcs.tests', 'wiki', 'toolbar')
35 COVER_APPS = ('catalogue', 'dvcs', 'wiki', 'toolbar')
37 '--tests=' + ','.join(TEST_MODULES),
38 '--cover-package=' + ','.join(COVER_APPS),
45 SECRET_KEY = "not-so-secret"