Removed claim that you can use different database backends for Django's tests.

Such as a setup isn't tested through continuous integration and therefore
isn't likely to work reliably.
This commit is contained in:
Tim Graham 2016-03-05 08:39:56 -05:00
parent 552f03869e
commit e19fc9f08a
1 changed files with 3 additions and 5 deletions

View File

@ -64,11 +64,9 @@ two databases:
* A ``default`` database. This database should use the backend that * A ``default`` database. This database should use the backend that
you want to use for primary testing. you want to use for primary testing.
* A database with the alias ``other``. The ``other`` database is used to * A database with the alias ``other``. The ``other`` database is used to test
establish that queries can be directed to different databases. As a result, that queries can be directed to different databases. This database should use
this database can use any backend you want. It doesn't need to use the same the same backend as the ``default``, and it must have a different name.
backend as the ``default`` database (although it can use the same backend if
you want to). It cannot be the same database as the ``default``.
If you're using a backend that isn't SQLite, you will need to provide other If you're using a backend that isn't SQLite, you will need to provide other
details for each database: details for each database: