mirror of https://github.com/scrapy/scrapy.git
updated settings.py for djangoitem tests to new django multi-db format
This commit is contained in:
parent
2ac08a713d
commit
209ecdf471
|
|
@ -1,2 +1,6 @@
|
|||
DATABASE_ENGINE = 'sqlite3'
|
||||
DATABASE_NAME = ':memory:'
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
'NAME': ':memory:',
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue