Author: mtredinnick Date: 2011-08-21 23:35:52 -0700 (Sun, 21 Aug 2011) New Revision: 16646
Modified: django/trunk/docs/ref/settings.txt Log: Documented some Oracle-specific test settings. Patch from aaugustin that should help people with specific testing requirements for Oracle set things up in their preferred way. The settings have always existed, but now they are documented. Fixes #16478. Modified: django/trunk/docs/ref/settings.txt =================================================================== --- django/trunk/docs/ref/settings.txt 2011-08-22 06:30:42 UTC (rev 16645) +++ django/trunk/docs/ref/settings.txt 2011-08-22 06:35:52 UTC (rev 16646) @@ -580,6 +580,18 @@ See :doc:`/topics/testing`. +.. setting:: TEST_CREATE + +TEST_CREATE +~~~~~~~~~~~ + +Default: ``True`` + +This is an Oracle-specific setting. + +If it is set to ``False``, the test tablespaces won't be automatically created +at the beginning of the tests and dropped at the end. + .. setting:: TEST_USER TEST_USER @@ -590,8 +602,56 @@ This is an Oracle-specific setting. The username to use when connecting to the Oracle database that will be used -when running tests. +when running tests. If not provided, Django will use ``'test_' + USER``. +.. setting:: TEST_CREATE_USER + +TEST_CREATE_USER +~~~~~~~~~~~~~~~~ + +Default: ``True`` + +This is an Oracle-specific setting. + +If it is set to ``False``, the test user won't be automatically created at the +beginning of the tests and dropped at the end. + +.. setting:: TEST_PASSWD + +TEST_PASSWD +~~~~~~~~~~~ + +Default: ``None`` + +This is an Oracle-specific setting. + +The password to use when connecting to the Oracle database that will be used +when running tests. If not provided, Django will use a hardcoded default value. + +.. setting:: TEST_TBLSPACE + +TEST_TBLSPACE +~~~~~~~~~~~~~ + +Default: ``None`` + +This is an Oracle-specific setting. + +The name of the tablespace that will be used when running tests. If not +provided, Django will use ``'test_' + NAME``. + +.. setting:: TEST_TBLSPACE_TMP + +TEST_TBLSPACE_TMP +~~~~~~~~~~~~~~~~~ + +Default: ``None`` + +This is an Oracle-specific setting. + +The name of the temporary tablespace that will be used when running tests. If +not provided, Django will use ``'test_' + NAME + '_temp'``. + .. setting:: DATABASE_ROUTERS DATABASE_ROUTERS -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.
