GNNRecom/academic_graph/settings/test.py

12 lines
195 B
Python
Raw Permalink Normal View History

2021-11-16 07:04:52 +00:00
from .common import * # noqa
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'test.sqlite3',
}
}
# 自定义设置
TESTING = True