DB diferente para testar no Django?

DATABASES = {
#    'default': {
#        'ENGINE': 'postgresql_psycopg2',
#        ...
#    }

    # for unit tests
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': 'mydatabase'
    }
}

Eu tenho dois bancos de dados: um que eu gostaria de usar para testes de unidade e outro para todo o resto. É possível configurar isso no Django 1.2.4?

(A razão pela qual pergunto é porque, com o postgresql, estou recebendo o seguinte erro:

foo@bar:~/path/$ python manage.py test
Creating test database 'default'...
Got an error creating the test database: permission denied to create database

Type 'yes' if you would like to try deleting the test database 'test_baz', or 'no' to cancel: yes
Destroying old test database...
Got an error recreating the test database: database "test_baz" does not exist

Por que eu poderia estar recebendo esse erro? Acho que realmente não me importo se sempre posso usar o SQLite para testes de unidade, pois isso funciona bem.)

questionAnswers(8)

yourAnswerToTheQuestion