mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
Use in-memory sqlite db for testing.
This commit is contained in:
parent
99629d6cd6
commit
5702672ab4
1 changed files with 7 additions and 0 deletions
|
@ -3,3 +3,10 @@ Settings for the test suite
|
|||
"""
|
||||
|
||||
from .base import *
|
||||
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
'NAME': ':memory:',
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue