From f77666a4affeff87d180fade251e7423e2459c3a Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Mon, 22 Aug 2011 06:35:52 +0000 Subject: [PATCH] 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. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16646 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/settings.txt | 62 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 61 insertions(+), 1 deletion(-) diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index 9d49147f66..d6a4203717 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -580,6 +580,18 @@ test database will use the name ``'test_' + DATABASE_NAME``. 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,7 +602,55 @@ Default: ``None`` 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