summaryrefslogtreecommitdiff
path: root/django/test/runner.py
AgeCommit message (Expand)Author
2021-04-02Refs #32532 -- Replaced is_discoverable() with try_importing().Chris Jerdonek
2021-03-30Fixed #29127 -- Prevented DiscoverRunner from hiding tagged test with syntax ...Chris Jerdonek
2021-03-29Simplified and optimized test_match_tags().Chris Jerdonek
2021-03-26Fixed #32591 -- Made DiscoverRunner order _FailedTest objects first.Chris Jerdonek
2021-03-24Fixed typo in DiscoverRunner --reverse help text.Chris Jerdonek
2021-03-24Refs #32532 -- Added DiscoverRunner.load_tests_for_label().Chris Jerdonek
2021-03-18Fixed #31370 -- Added support for parallel tests with --buffer.Adam Johnson
2021-03-18Refs #31370 -- Made RemoteTestResult subclass unittest.TestResult.Adam Johnson
2021-03-17Fixed #32560 -- Fixed test runner with --pdb and --buffer on fail/error.Adam Johnson
2021-03-15Fixed #32540 -- Optimized DiscoverRunner.build_suite() by calling find_top_le...Chris Jerdonek
2021-03-15Refs #32540 -- Added django.test.runner.find_top_level().Chris Jerdonek
2021-03-12Reduced nesting inside DiscoverRunner.build_suite().Chris Jerdonek
2021-03-11Fixed #32529 -- Delayed creating a test suite in build_suite().Chris Jerdonek
2021-03-09Fixed #32516 -- Fixed reorder_suite() with duplicates and reverse=True.Chris Jerdonek
2021-03-08Refs #32489 -- Simplified filter_tests_by_tags().Chris Jerdonek
2021-03-08Refs #32489 -- Simplified partition_suite_by_case().Chris Jerdonek
2021-03-08Refs #32489 -- Removed unneeded partition_suite_by_type().Chris Jerdonek
2021-03-05Fixed #32489 -- Added iter_test_cases() to iterate over a TestSuite.Chris Jerdonek
2021-03-05Simplified for loop in reorder_suite().Chris Jerdonek
2021-02-24Fixed #32446 -- Deprecated SERIALIZE test database setting.Simon Charette
2021-02-10Fixed #32355 -- Dropped support for Python 3.6 and 3.7Mariusz Felisiak
2020-11-28Fixed #32227 -- Prevented crash when setUpTestData() errors with --debug-sql.Adam Johnson
2020-08-13Refs #31811 -- Added optional timing outputs to the test runner.Ahmad A. Hussein
2020-07-10Fixed #31509 -- Made DiscoverRunner enable faulthandler by default.ovkulkarni
2020-02-07Refs #31055 -- Made DiscoverRunner skip running system checks on unused test ...Simon Charette
2019-12-09Fixed #27430 -- Added -b/--buffer option to DiscoverRunner.Baptiste Mispelon
2019-08-07Fixed #30676 -- Added --pdb option to test runner.Andrew Godwin
2019-04-30Fixed #30245 -- Added -k option to DiscoverRunner.François Freitag
2019-04-18Fixed #30367 -- Changed "pip install" to "python -m pip install" in docs, com...Ramiro Morales
2019-01-14Removed unnecessary string formatting of strings.Jon Dufresne
2019-01-10Fixed #28478 -- Make DiscoverRunner skip creating unused test databases.Simon Charette
2018-12-05Reverted "Fixed #25251 -- Made data migrations available in TransactionTestCa...Tim Graham
2018-11-29Refs #25251 -- Filtered out skipped tests when processing the test suite to s...romgar
2018-11-06Fixed #25251 -- Made data migrations available in TransactionTestCase when us...romgar
2018-10-30Fixed #29866 -- Made DiscoverRunner do tests tear down if running checks or t...Jayden Kneller
2018-10-09Capitalized "Python" in docs and comments.Jon Dufresne
2018-07-02Removed parser.add_arguments() arguments that match the defaults.Claude Paroz
2018-03-16Fixed hanging indentation in various code.Mariusz Felisiak
2018-02-13Fixed #29106 -- Made DiscoverRunner display selected test tags.Sanyam Khurana
2018-01-03Fixed #28984 -- Made assorted code simplifications.Tim Graham
2017-10-13Refs #28575 -- Allowed pickling Model.DoesNotExist and MultipleObjectsReturne...Rachel Tobin
2017-09-22Refs #26840 -- Removed django.test.runner.setup_databases() per deprecation t...Tim Graham
2017-09-11Fixed #28578 -- Renamed DatabaseCreation number arguments to suffix.Jon Dufresne
2017-07-05Fixed #28360 -- Fixed test runner crash with --debug-sql on fail/error in sub...Sergey Fedoseev
2017-04-01Removed implicit default store_true/false argparse args.Jon Dufresne
2017-03-04Refs #27656 -- Updated remaining docstring verbs according to PEP 257.Anton Samarchyan
2017-01-25Refs #23919 -- Removed misc Python 2/3 references.Tim Graham
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-23Replaced dict() usage with dict literals.Jon Dufresne
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette