Merge pull request #149 from mitodl/master

Added deterministic handling of sqlite database location
This commit is contained in:
Pēteris Caune 2018-01-19 22:11:42 +02:00 committed by GitHub
commit 2338f6e4aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,7 +84,7 @@ TEST_RUNNER = 'hc.api.tests.CustomRunner'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': './hc.sqlite',
'NAME': '{0}/hc.sqlite'.format(BASE_DIR),
}
}