Disabled logging of warnings/errors for acceptance tests

to make the logs readable
This commit is contained in:
Will Daly
2013-05-15 11:31:52 -04:00
parent baec80ed07
commit b3e959773d
2 changed files with 8 additions and 0 deletions

View File

@@ -8,6 +8,10 @@ from .test import *
# otherwise the browser will not render the pages correctly
DEBUG = True
# Disable warnings for acceptance tests, to make the logs readable
import logging
logging.disable(logging.ERROR)
# Show the courses that are in the data directory
COURSES_ROOT = ENV_ROOT / "data"
DATA_DIR = COURSES_ROOT

View File

@@ -8,6 +8,10 @@ from .test import *
# otherwise the browser will not render the pages correctly
DEBUG = True
# Disable warnings for acceptance tests, to make the logs readable
import logging
logging.disable(logging.ERROR)
# Use the mongo store for acceptance tests
modulestore_options = {
'default_class': 'xmodule.raw_module.RawDescriptor',