mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
rm utils/test_settings.py. It is never used
This commit is contained in:
parent
26ac902ef9
commit
18e43fd7f1
1 changed files with 0 additions and 34 deletions
|
@ -1,34 +0,0 @@
|
|||
import sys
|
||||
from settings import *
|
||||
|
||||
# if 'test' in sys.argv:
|
||||
# DATABASES['default']['ENGINE'] = 'django.db.backends.sqlite3'
|
||||
# DATABASES['default']['OPTIONS'] = {}
|
||||
# # DATABASES['default']['NAME'] = 'nb.db'
|
||||
# # DATABASES['default']['TEST_NAME'] = 'nb2.db'
|
||||
|
||||
# DATABASES = {
|
||||
# 'default':{
|
||||
# 'ENGINE': 'django.db.backends.sqlite3',
|
||||
# 'NAME': ':memory:',
|
||||
# 'TEST_NAME': ':memory:',
|
||||
# },
|
||||
# }
|
||||
MONGO_DB = {
|
||||
'name': 'newsblur_test',
|
||||
'host': '127.0.0.1:27017',
|
||||
}
|
||||
|
||||
MONGO_DATABASE_NAME = 'test_newsblur'
|
||||
# TEST_DATABASE_NAME = ":memory:"
|
||||
SOUTH_TESTS_MIGRATE = False
|
||||
DAYS_OF_UNREAD = 9999
|
||||
DAYS_OF_UNREAD_FREE = 9999
|
||||
TEST_DEBUG = True
|
||||
DEBUG = True
|
||||
SITE_ID = 2
|
||||
SENTRY_DSN = None
|
||||
# from django.db import connection
|
||||
# cursor = connection.cursor()
|
||||
# cursor.execute('PRAGMA temp_store = MEMORY;')
|
||||
# cursor.execute('PRAGMA synchronous=OFF')
|
Loading…
Add table
Reference in a new issue