| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-05-04 | [1.11.x] Fixed #28160 -- Prevented hiding GDAL exceptions when it's not ↵ | Tim Graham | |
| installed. Backport of 2dc3280254ae06ca1fe664abf55749fe12a699d4 from master | |||
| 2016-12-28 | Refs #25415 -- Fixed/silenced check errors in Django's test suite. | Adam Chainz | |
| 2016-11-14 | Fixed E305 flake8 warnings. | Ramin Farajpour Cami | |
| 2016-11-10 | Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings. | za | |
| 2016-10-06 | Fixed #27301 -- Prevented exceptions that fail unpickling from crashing the ↵ | Adam Wróbel | |
| parallel test runner. | |||
| 2016-09-08 | Fixed #27170 -- Added DatabaseWrapper class attributes to ease subclassing. | Chris Jerdonek | |
| 2016-08-26 | Fixed #26942 -- Added support for subtests during parallel testing. | Chris Jerdonek | |
| 2016-08-17 | Fixed #26840 -- Added test.utils.setup/teardown_databases(). | Andreas Pelme | |
| 2016-08-12 | Fixed #27008 -- Added --debug-mode option to DiscoverRunner. | Chris Jerdonek | |
| 2016-08-09 | Fixed #27035 -- Eased changing settings.DEBUG for DiscoverRunner. | Chris Jerdonek | |
| 2016-08-04 | Fixed #26981 -- Added DiscoverRunner.get_test_runner_kwargs(). | Chris Jerdonek | |
| 2016-06-28 | Replaced use of TestCase.fail() with assertRaises(). | Tim Graham | |
| Also removed try/except/fail antipattern that hides exceptions. | |||
| 2016-04-08 | Fixed E128 flake8 warnings in tests/. | Tim Graham | |
| 2016-02-17 | Fixed #25735 -- Added support for test tags to DiscoverRunner. | Jakub Paczkowski | |
| Thanks Carl Meyer, Claude Paroz, and Simon Charette for review. | |||
| 2016-01-29 | Refs #26022 -- Used context manager version of assertRaises in tests. | Hasan | |
| 2016-01-14 | Fixed #25999 -- Removed promotion of RemovedInNextVersionWarning to loud by ↵ | Tim Graham | |
| default. | |||
| 2015-12-03 | Fixed many spelling mistakes in code, comments, and docs. | Josh Soref | |
| 2015-09-29 | Fixed #25466 -- Added backwards compatibility aliases for LoaderOrigin and ↵ | Tim Graham | |
| StringOrigin. Thanks Simon Charette for the DeprecationInstanceCheck class. | |||
| 2015-09-23 | Removed RemovedInDjango110Warning. | Tim Graham | |
| 2015-09-17 | Refs #14091 -- Fixed connection.queries on SQLite. | Aymeric Augustin | |
| 2015-09-14 | Fixed #25377 -- Changed Count queries to execute COUNT(*) instead of COUNT('*'). | Adam Chainz | |
| 2015-09-12 | Fixed #23395 -- Limited line lengths to 119 characters. | Dražen Odobašić | |
| 2015-09-09 | Cloned databases for running tests in parallel. | Aymeric Augustin | |
| 2015-09-05 | Moved an import to the toplevel. | Aymeric Augustin | |
| 2015-07-27 | Fixed #25110 -- Fixed a test_runner test isolation regression. | Joseph Gordon | |
| Thanks claudep for the patch. | |||
| 2015-06-24 | Renamed RemovedInDjangoXYWarnings for new roadmap. | Tim Graham | |
| Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more. | |||
| 2015-05-09 | Mocked db.connections in test_runner tests | Claude Paroz | |
| 2015-03-25 | Fixed #24394 -- Allowed running tests with empty default dictionary. | Andrei Kulakov | |
| 2015-02-17 | Refs #24324 -- Fixed Python 2 test failures when path to Django source ↵ | Tim Graham | |
| contains non-ASCII characters. | |||
| 2015-02-11 | Moved contrib.gis tests out of contrib. | Tim Graham | |
| 2015-02-10 | Disallowed importing concrete models without an application. | Aymeric Augustin | |
| Removed fragile algorithm to find which application a model belongs to. Fixed #21680, #21719. Refs #21794. | |||
| 2015-02-06 | Sorted imports with isort; refs #23860. | Tim Graham | |
| 2015-01-23 | Fixed test_runner test failure on Python 3.5; refs #23763. | Tim Graham | |
| Python change is http://bugs.python.org/issue22032 | |||
| 2015-01-12 | Fixed #24118 -- Added --debug-sql option for tests. | Marc Tamlyn | |
| 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. | |||
| 2014-12-01 | Fixed #23289 -- Added mock as a test dependency. | Tim Graham | |
| 2014-11-24 | Fixed #23742 -- Added an option to reverse tests order. | wrwrwr | |
| This is useful for debugging side effects affecting tests that are usually executed before a given test. Full suite and pair tests sort cases more or less deterministically, thus some test cross-dependencies are easier to reveal by reversing the order. Thanks Preston Timmons for the review. | |||
| 2014-11-24 | Changed test_runner imports to name objects imported from test.runner. | wrwrwr | |
| 2014-11-03 | Fixed #23620 -- Used more specific assertions in the Django test suite. | Berker Peksag | |
| 2014-10-24 | Fixed #23652 -- Restored database name after destroying test database | Claude Paroz | |
| Thanks Bjarkias for the report. | |||
| 2014-10-23 | Fixed #23707 -- Prevented discovery of duplicated tests | Claude Paroz | |
| 2014-10-21 | Removed unneeded override_system_checks | Claude Paroz | |
| Refs #23685. | |||
| 2014-09-24 | Fixed #23421 -- Corrected TEST SERIALIZE setting. | Tim Graham | |
| Thanks gkoller for the report. | |||
| 2014-06-14 | Converted test management command to argparse | Claude Paroz | |
| Keeping backwards compatibility with test_runner.option_list is tricky and would imply transforming an optparse.Option to an argparse.Action. I choose to introduce a backwards incompatible change because it only affects testing, not runtime behavior. | |||
| 2014-06-08 | Fix broken alias testing test | Andrew Godwin | |
| 2014-06-05 | Fixed #20550 -- Added keepdb argument to destroy_test_db | Greg Chapple | |
| 2014-05-28 | Fixed #20550 -- Added ability to preserve test db between runs | Greg Chapple | |
| 2014-05-16 | cater for running tests from another directory than tests - applying ↵ | Nikolaus Schlemm | |
| existing pattern to newly added test_testcase_ordering as well | |||
| 2014-04-20 | Removed old test runner test cases. | Preston Timmons | |
| These files were added as part of #12658, which pertained to the old django.test.simple test runner. No tests call them anymore. | |||
| 2014-04-16 | Fixed flake8 warnings introduced in recent commits. | Simon Charette | |
| 2014-04-12 | Fixed #22102 -- Made SimpleTestCase tests run before unittest.TestCase ones | Claude Paroz | |
| Thanks aptiko for the reporti and Tim Graham for the review. | |||
