summaryrefslogtreecommitdiffstats
path: root/hyperkitty/tests_conf/settings_tests.py
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-07-23 11:45:40 +0200
committerAurélien Bompard <aurelien@bompard.org>2013-07-23 11:45:40 +0200
commit8333abc9062ff0e7345dec41db972c0992c534e0 (patch)
treee47334f27f56e86eca6e01812a21cfee9292959f /hyperkitty/tests_conf/settings_tests.py
parentbf2de4165365d96dcafdfc769ac6020348a45c6e (diff)
downloadhyperkitty-8333abc9062ff0e7345dec41db972c0992c534e0.tar.gz
hyperkitty-8333abc9062ff0e7345dec41db972c0992c534e0.tar.xz
hyperkitty-8333abc9062ff0e7345dec41db972c0992c534e0.zip
Centralize settings modifications for unittests in a single class
Diffstat (limited to 'hyperkitty/tests_conf/settings_tests.py')
-rw-r--r--hyperkitty/tests_conf/settings_tests.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/hyperkitty/tests_conf/settings_tests.py b/hyperkitty/tests_conf/settings_tests.py
deleted file mode 100644
index 59e53c1..0000000
--- a/hyperkitty/tests_conf/settings_tests.py
+++ /dev/null
@@ -1,21 +0,0 @@
-#
-# This module is only used to run the unit tests.
-#
-
-DEBUG = True
-TEMPLATE_DEBUG = DEBUG
-ASSETS_DEBUG = DEBUG
-USE_SSL = False
-DATABASES = {
- 'default': {
- 'ENGINE': 'django.db.backends.sqlite3',
- 'NAME': ':memory:',
- 'USER': '', # Not used with sqlite3.
- 'PASSWORD': '', # Not used with sqlite3.
- 'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
- 'PORT': '', # Set to empty string for default. Not used with sqlite3.
- }
-}
-KITTYSTORE_URL = 'sqlite:'
-KITTYSTORE_DEBUG=False
-USE_MOCKUPS = False