fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
descriptions in catalogue
[redakcja.git]
/
src
/
redakcja
/
settings
/
test.py
diff --git
a/src/redakcja/settings/test.py
b/src/redakcja/settings/test.py
index
c026af0
..
dba64b6
100644
(file)
--- a/
src/redakcja/settings/test.py
+++ b/
src/redakcja/settings/test.py
@@
-1,9
+1,10
@@
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
#
-# Nose tests
-#
-
+import tempfile
from redakcja.settings import *
from redakcja.settings import *
+
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
@@
-14,12
+15,10
@@
DATABASES = {
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}
-import tempfile
CATALOGUE_REPO_PATH = tempfile.mkdtemp(prefix='redakcja-repo')
CATALOGUE_IMAGE_REPO_PATH = tempfile.mkdtemp(prefix='redakcja-repo-img')
MEDIA_ROOT = tempfile.mkdtemp(prefix='media-root')
CATALOGUE_REPO_PATH = tempfile.mkdtemp(prefix='redakcja-repo')
CATALOGUE_IMAGE_REPO_PATH = tempfile.mkdtemp(prefix='redakcja-repo-img')
MEDIA_ROOT = tempfile.mkdtemp(prefix='media-root')
-CELERY_ALWAYS_EAGER = True
INSTALLED_APPS += ('dvcs.tests',)
INSTALLED_APPS += ('dvcs.tests',)
@@
-27,3
+26,16
@@
SECRET_KEY = "not-so-secret"
LITERARY_DIRECTOR_USERNAME = 'Kaowiec'
LITERARY_DIRECTOR_USERNAME = 'Kaowiec'
+
+MIN_COVER_SIZE = (1, 1)
+
+
+class DisableMigrations(object):
+
+ def __contains__(self, item):
+ return True
+
+ def __getitem__(self, item):
+ return None
+
+MIGRATION_MODULES = DisableMigrations()