Commit b5e72b1e by Mark L. Chang

notes on lettuce testing

parent a52e666e
......@@ -6,6 +6,11 @@ sessions. Assumes structure:
/db # This is where it'll write the database file
/mitx # The location of this repo
/log # Where we're going to write log files
AUG 20 2012 [mchang]:
copied from lms.envs.dev
modified to include custom 'acceptance_testing' djangoapp
modified to include lettuce django connection
"""
from .common import *
from .logsettings import get_logger_config
......@@ -92,8 +97,6 @@ MITX_FEATURES['AUTH_USE_MIT_CERTIFICATES'] = True
################################ DEBUG TOOLBAR #################################
INSTALLED_APPS += ('debug_toolbar',)
INSTALLED_APPS += ('acceptance_testing',)
INSTALLED_APPS += ('lettuce.django',)
MIDDLEWARE_CLASSES += ('debug_toolbar.middleware.DebugToolbarMiddleware',)
INTERNAL_IPS = ('127.0.0.1',)
......@@ -129,3 +132,9 @@ FILE_UPLOAD_HANDLERS = (
########################### PIPELINE #################################
PIPELINE_SASS_ARGUMENTS = '-r {proj_dir}/static/sass/bourbon/lib/bourbon.rb'.format(proj_dir=PROJECT_ROOT)
########################### LETTUCE TESTING ##########################
LETTUCE_APPS = ('acceptance_testing',)
INSTALLED_APPS += ('acceptance_testing',)
INSTALLED_APPS += ('lettuce.django',)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment