Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/test_runner/test_debug_sql.py
Commit message (Collapse)AuthorAgeFilesLines
* Refs #14091 -- Fixed connection.queries on SQLite.Aymeric Augustin2015-09-171-36/+12
|
* Fixed #25377 -- Changed Count queries to execute ↵Adam Chainz2015-09-141-12/+12
| | | | COUNT(*) instead of COUNT('*').
* Refs #24324 -- Fixed Python 2 test failures when path to ↵Tim Graham2015-02-181-2/+4
| | | | Django source contains non-ASCII characters.
* Fixed test_runner test failure on Python 3.5; refs #23763.Tim Graham2015-01-231-3/+7
| | | | Python change is http://bugs.python.org/issue22032
* Fixed #24118 -- Added --debug-sql option for tests.Marc Tamlyn2015-01-121-0/+102
Added a --debug-sql option for tests and runtests.py which outputs the SQL logger for failing tests. When combined with --verbosity=2, it also outputs the SQL for passing tests. Thanks to Berker, Tim, Markus, Shai, Josh and Anssi for review and discussion.