Use in-memory sqlite db for testing.

This commit is contained in:
Martin Mahner 2018-06-23 15:47:30 +02:00
parent 99629d6cd6
commit 5702672ab4

View file

@ -3,3 +3,10 @@ Settings for the test suite
"""
from .base import *
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:',
}
}