Made the setting for use of InnoDB for testing default. Added a setting for global test fixtures. Added ietf.utils to the app list to capture the makefixture management command.

- Legacy-Id: 6321
This commit is contained in:
Henrik Levkowetz 2013-09-30 20:38:06 +00:00
parent e4f4467725
commit 18445123aa

View file

@ -61,8 +61,8 @@ DATABASES = {
}
DATABASE_TEST_OPTIONS = {
# Uncomment this to speed up testing if your database supports InnoDB:
# 'init_command': 'SET storage_engine=InnoDB',
# Comment this out if your database doesn't support InnoDB
'init_command': 'SET storage_engine=InnoDB',
}
# Local time zone for this installation. Choices can be found here:
@ -176,6 +176,7 @@ INSTALLED_APPS = (
'ietf.liaisons',
'ietf.mailinglists',
'ietf.meeting',
'ietf.utils',
#'ietf.proceedings',
'ietf.redirects',
'ietf.idrfc',
@ -227,6 +228,9 @@ SERVER_MODE = 'development'
# The name of the method to use to invoke the test suite
TEST_RUNNER = 'ietf.utils.test_runner.run_tests'
# Fixtures which will be loaded before testing starts
GLOBAL_TEST_FIXTURES = [ 'names','groups','persons', 'roles']
# WG Chair configuration
MAX_WG_DELEGATES = 3