import os DEBUG = TEMPLATE_DEBUG = True DATABASE_ENGINE = 'sqlite3' DATABASE_NAME = '/tmp/shorturls.db' INSTALLED_APPS = ['shorturls'] ROOT_URLCONF = ['shorturls.urls'] TEMPLATE_DIRS = os.path.join(os.path.dirname(__file__), 'tests', 'templates')