projets
/
auf_django_references.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
[#2534] Tests pour l'utilisation du formulaire ailleurs que dans l'admin
[auf_django_references.git]
/
tests
/
settings.py
diff --git
a/tests/settings.py
b/tests/settings.py
index
e5cbdd2
..
baecb0f
100644
(file)
--- a/
tests/settings.py
+++ b/
tests/settings.py
@@
-1,3
+1,5
@@
+import os
+
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
@@
-20,3
+22,5
@@
INSTALLED_APPS = (
ROOT_URLCONF = 'tests.urls'
DEBUG = True
STATIC_URL = '/static/'
+
+TEMPLATE_DIRS = (os.path.join(os.path.dirname(__file__), 'templates'),)