Test on SQLite if not configured otherwise

This commit is contained in:
Raphael Michel
2017-02-06 22:42:13 +01:00
parent b7df5eff19
commit 8f5849a90c

View File

@@ -33,3 +33,10 @@ CACHES = {
'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
}
}
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': ':memory:'
}
}