Changes between Version 7 and Version 8 of Settings
- Timestamp:
- 01/06/10 20:18:23 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Settings
v7 v8 5 5 [[PageOutline]] 6 6 7 === SOUTH_DATABASE_ADAPTER === 7 === SKIP_SOUTH_TESTS === 8 9 South has a somewhat fragile test suite, as it has to fiddle with INSTALLED_APPS at runtime to load in its own testing apps. If the South tests are failing for you, and you'd rather they be ignored (by your CI system or similar, in particlar) set this to `True`. Defaults to `False`. 10 11 === SOUTH_DATABASE_ADAPTER (Django 1.1 and below) === 8 12 9 13 If set, overrides the database module South uses for generating DDL commands. Defaults to `south.db.<DATABASE_ENGINE>`. 10 14 11 === S KIP_SOUTH_TESTS===15 === SOUTH_DATABASE_ADAPTERS (Django 1.2 and above) === 12 16 13 South has a somewhat fragile test suite, as it has to fiddle with INSTALLED_APPS at runtime to load in its own testing apps. If the South tests are failing for you, and you'd rather they be ignored (by your CI system or similar, in particlar) set this to `True`. Defaults to `False`.17 A dictionary with database aliases as keys and the database module South will use as values. South defaults to using the internal `south.db.<ENGINE>` modules. 14 18 15 19 === DATABASE_STORAGE_ENGINE === … … 23 27 === SOUTH_TESTS_MIGRATE === 24 28 25 If this is `True`, South's test runner integration will make the test database be created via migrations, rather than via a syncdb (the default). Set this if you have migrations which set up the database more than Django's syncdb would - for example, migrations that insert data, or do custom indexes (e.g. GIN on PostgreSQL). Defaults to ` False`.29 If this is `True`, South's test runner integration will make the test database be created via migrations, rather than via a syncdb (the default). Set this if you have migrations which set up the database more than Django's syncdb would - for example, migrations that insert data, or do custom indexes (e.g. GIN on PostgreSQL). Defaults to `True` in 0.7 and above, `False` in 0.6 and below. 26 30 27 31 === SOUTH_LOGGING_ON ===
