Comment 0 for bug 987379

Revision history for this message
Raphaƫl Badin (rvb) wrote :

Django generates a fixed name (
https://docs.djangoproject.com/en/dev/topics/testing/#the-test-database) for the test database. It is generated by adding a prefix ('test_') to the NAME of the default database defined in the settings (DATABASES['default']['NAME']). This prevents many instances of the test suite to be run concurrently.