Changes between Version 7 and Version 8 of Settings


Ignore:
Timestamp:
01/06/10 20:18:23 (3 years ago)
Author:
andrew
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Settings

    v7 v8  
    55[[PageOutline]] 
    66 
    7 === SOUTH_DATABASE_ADAPTER === 
     7=== SKIP_SOUTH_TESTS === 
     8 
     9South 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) === 
    812 
    913If set, overrides the database module South uses for generating DDL commands. Defaults to `south.db.<DATABASE_ENGINE>`. 
    1014 
    11 === SKIP_SOUTH_TESTS === 
     15=== SOUTH_DATABASE_ADAPTERS (Django 1.2 and above) === 
    1216 
    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`. 
     17A 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. 
    1418 
    1519=== DATABASE_STORAGE_ENGINE === 
     
    2327=== SOUTH_TESTS_MIGRATE === 
    2428 
    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`. 
     29If 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. 
    2630 
    2731=== SOUTH_LOGGING_ON ===