Ticket #16478: 16478-docs-only.patch

File 16478-docs-only.patch, 1.8 KB (added by Aymeric Augustin, 13 years ago)
  • docs/ref/settings.txt

     
    580580
    581581See :doc:`/topics/testing`.
    582582
     583.. setting:: TEST_CREATE
     584
     585TEST_CREATE
     586~~~~~~~~~~~
     587
     588Default: ``True``
     589
     590This is an Oracle-specific setting.
     591
     592If it is set to ``False``, the test tablespaces won't be automatically created
     593at the beginning of the tests and dropped at the end.
     594
    583595.. setting:: TEST_USER
    584596
    585597TEST_USER
     
    590602This is an Oracle-specific setting.
    591603
    592604The username to use when connecting to the Oracle database that will be used
    593 when running tests.
     605when running tests. If not provided, Django will use ``'test_' + USER``.
    594606
     607.. setting:: TEST_CREATE_USER
     608
     609TEST_CREATE_USER
     610~~~~~~~~~~~~~~~~
     611
     612Default: ``True``
     613
     614This is an Oracle-specific setting.
     615
     616If it is set to ``False``, the test user won't be automatically created at the
     617beginning of the tests and dropped at the end.
     618
     619.. setting:: TEST_PASSWD
     620
     621TEST_PASSWD
     622~~~~~~~~~~~
     623
     624Default: ``None``
     625
     626This is an Oracle-specific setting.
     627
     628The password to use when connecting to the Oracle database that will be used
     629when running tests. If not provided, Django will use a hardcoded default value.
     630
     631.. setting:: TEST_TBLSPACE
     632
     633TEST_TBLSPACE
     634~~~~~~~~~~~~~
     635
     636Default: ``None``
     637
     638This is an Oracle-specific setting.
     639
     640The name of the tablespace that will be used when running tests. If not
     641provided, Django will use ``'test_' + NAME``.
     642
     643.. setting:: TEST_TBLSPACE_TMP
     644
     645TEST_TBLSPACE_TMP
     646~~~~~~~~~~~~~~~~~
     647
     648Default: ``None``
     649
     650This is an Oracle-specific setting.
     651
     652The name of the temporary tablespace that will be used when running tests. If
     653not provided, Django will use ``'test_' + NAME + '_temp'``.
     654
    595655.. setting:: DATABASE_ROUTERS
    596656
    597657DATABASE_ROUTERS
Back to Top