| 607 | .. setting:: TEST_CREATE_USER |
| 608 | |
| 609 | TEST_CREATE_USER |
| 610 | ~~~~~~~~~~~~~~~~ |
| 611 | |
| 612 | Default: ``True`` |
| 613 | |
| 614 | This is an Oracle-specific setting. |
| 615 | |
| 616 | If it is set to ``False``, the test user won't be automatically created at the |
| 617 | beginning of the tests and dropped at the end. |
| 618 | |
| 619 | .. setting:: TEST_PASSWD |
| 620 | |
| 621 | TEST_PASSWD |
| 622 | ~~~~~~~~~~~ |
| 623 | |
| 624 | Default: ``None`` |
| 625 | |
| 626 | This is an Oracle-specific setting. |
| 627 | |
| 628 | The password to use when connecting to the Oracle database that will be used |
| 629 | when running tests. If not provided, Django will use a hardcoded default value. |
| 630 | |
| 631 | .. setting:: TEST_TBLSPACE |
| 632 | |
| 633 | TEST_TBLSPACE |
| 634 | ~~~~~~~~~~~~~ |
| 635 | |
| 636 | Default: ``None`` |
| 637 | |
| 638 | This is an Oracle-specific setting. |
| 639 | |
| 640 | The name of the tablespace that will be used when running tests. If not |
| 641 | provided, Django will use ``'test_' + NAME``. |
| 642 | |
| 643 | .. setting:: TEST_TBLSPACE_TMP |
| 644 | |
| 645 | TEST_TBLSPACE_TMP |
| 646 | ~~~~~~~~~~~~~~~~~ |
| 647 | |
| 648 | Default: ``None`` |
| 649 | |
| 650 | This is an Oracle-specific setting. |
| 651 | |
| 652 | The name of the temporary tablespace that will be used when running tests. If |
| 653 | not provided, Django will use ``'test_' + NAME + '_temp'``. |
| 654 | |