Check in diffs for the test db. Try to make the test db identifiers predictable.

This commit is contained in:
yackob03 2013-10-18 16:36:11 -04:00
parent 4514f5a969
commit 3d0b165de9
71 changed files with 434170 additions and 11 deletions

View file

@ -24,7 +24,7 @@ class MailConfig(object):
class SQLiteDB(object):
DB_NAME = 'test.db'
DB_NAME = 'test/data/test.db'
DB_CONNECTION_ARGS = {
'threadlocals': True
}
@ -51,7 +51,7 @@ class S3Storage(object):
class LocalStorage(object):
STORAGE_KIND = 'local'
LOCAL_STORAGE_DIR = '/tmp/registry'
LOCAL_STORAGE_DIR = 'test/data/registry'
class StripeTestConfig(object):