fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Missing admin line.
[redakcja.git]
/
src
/
redakcja
/
settings
/
test.py
diff --git
a/src/redakcja/settings/test.py
b/src/redakcja/settings/test.py
index
4a80142
..
dba64b6
100644
(file)
--- a/
src/redakcja/settings/test.py
+++ b/
src/redakcja/settings/test.py
@@
-26,3
+26,16
@@
SECRET_KEY = "not-so-secret"
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()