summaryrefslogtreecommitdiff
path: root/tests/check_framework/test_database.py
Commit message (Collapse)AuthorAgeFilesLines
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-12/+18
|
* Combined MySQL backend server info queries.Adam Johnson2020-06-221-9/+11
|
* Refs #31331 -- Added DatabaseWrapper.sql_mode to MySQL.Mariusz Felisiak2020-03-031-1/+9
|
* Refs #31055 -- Added --database option to the check management command.Simon Charette2020-02-071-28/+9
| | | | | | | | This avoids enabling the ``database`` checks unless they are explicitly requested and allows to disable on a per-alias basis which is required when only creating a subset of the test databases. This also removes unnecessary BaseCommand._run_checks() hook.
* Refs #28478 -- Deprecated TestCase's allow_database_queries and multi_db in ↵Simon Charette2019-01-101-1/+1
| | | | favor of databases.
* Added multi_db=True to test cases that access the 'other' db connection.Tim Graham2017-02-101-0/+2
| | | | Fixed a failure in the context processors tests when running in reverse on MySQL due to an extra query after refs #27683.
* Refs #23919 -- Removed django.test.mock Python 2 compatibility shim.Tim Graham2017-01-201-1/+2
|
* Fixed #26351 -- Added MySQL check to warn about strict mode optionClaude Paroz2016-04-081-0/+25
| | | | | Thanks Adam Chainz for the initial implementation in django-mysql. Thanks Adam Chainz, Tim Graham, and Shai Berger for the reviews.
* Refs #26351 -- Added check hook to support database-related checksClaude Paroz2016-04-081-0/+33
Thanks Tim Graham and Shai Berger for the reviews.