Skip to content

Commit 1844512

Browse files
committed
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
1 parent e4f4467 commit 1844512

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

ietf/settings.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
}
6262

6363
DATABASE_TEST_OPTIONS = {
64-
# Uncomment this to speed up testing if your database supports InnoDB:
65-
# 'init_command': 'SET storage_engine=InnoDB',
64+
# Comment this out if your database doesn't support InnoDB
65+
'init_command': 'SET storage_engine=InnoDB',
6666
}
6767

6868
# Local time zone for this installation. Choices can be found here:
@@ -176,6 +176,7 @@
176176
'ietf.liaisons',
177177
'ietf.mailinglists',
178178
'ietf.meeting',
179+
'ietf.utils',
179180
#'ietf.proceedings',
180181
'ietf.redirects',
181182
'ietf.idrfc',
@@ -227,6 +228,9 @@
227228
# The name of the method to use to invoke the test suite
228229
TEST_RUNNER = 'ietf.utils.test_runner.run_tests'
229230

231+
# Fixtures which will be loaded before testing starts
232+
GLOBAL_TEST_FIXTURES = [ 'names','groups','persons', 'roles']
233+
230234
# WG Chair configuration
231235
MAX_WG_DELEGATES = 3
232236

0 commit comments

Comments
 (0)