More housekeeping: remove nose and unused cruft.
[redakcja.git] / src / redakcja / settings / test.py
1 from redakcja.settings import *
2
3 DATABASES = {
4     'default': {
5         'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
6         'NAME': '', # Or path to database file if using sqlite3.
7         'USER': '',                      # Not used with sqlite3.
8         'PASSWORD': '',                  # Not used with sqlite3.
9         'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
10         'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
11     }
12 }
13 import tempfile
14
15 CATALOGUE_REPO_PATH = tempfile.mkdtemp(prefix='redakcja-repo')
16 CATALOGUE_IMAGE_REPO_PATH = tempfile.mkdtemp(prefix='redakcja-repo-img')
17 MEDIA_ROOT = tempfile.mkdtemp(prefix='media-root')
18 CELERY_ALWAYS_EAGER = True
19
20 INSTALLED_APPS += ('dvcs.tests',)
21
22 SECRET_KEY = "not-so-secret"
23
24
25 LITERARY_DIRECTOR_USERNAME = 'Kaowiec'