Run SQLite tests with in-memory database

Using an in-memory datbase is faster and doesn't require storing a large
binary file in the repository.
This commit is contained in:
Jon Dufresne 2018-11-04 16:24:54 -08:00
parent ec568b5ad9
commit 4f6f03074d
2 changed files with 0 additions and 1 deletions

Binary file not shown.

View File

@ -78,7 +78,6 @@ else:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(os.path.dirname(__file__), 'database.db'),
}
}