poky/bitbake/lib/toaster/toastermain/settings_test.py
Richard Purdie 9501864db8 bitbake: bitbake: Strip old editor directives from file headers
There are much better ways to handle this and most editors shouldn't need this
in modern times, drop the noise from the files. Its not consitently applied
anyway.

(Bitbake rev: 5e43070e3087d09aea2f459b033d035c5ef747d0)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2019-05-04 10:44:10 +01:00

29 lines
602 B
Python

#
# BitBake Toaster Implementation
#
# Copyright (C) 2016 Intel Corporation
#
# SPDX-License-Identifier: GPL-2.0-only
#
# Django settings for Toaster project.
# Settings overlay to use for running tests
# DJANGO_SETTINGS_MODULE=toastermain.settings-test
from toastermain.settings import *
DEBUG = True
TEMPLATE_DEBUG = DEBUG
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': '/tmp/toaster-test-db.sqlite',
'TEST': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': '/tmp/toaster-test-db.sqlite',
}
}
}