summaryrefslogtreecommitdiff
path: root/django/test/runner.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-1/+0
* Fixed #34233 -- Dropped support for Python 3.8 and 3.9.Mariusz Felisiak2023-01-181-2/+2
* Refs #32655 -- Removed extra_tests argument for DiscoverRunner.build_suite()/...Mariusz Felisiak2023-01-171-20/+3
* Fixed #34111 -- Made test runner with --debug-sql format SQL queries.Giebisch2022-10-241-1/+5
* Refs #34010 -- Made --debug-mode work for parallel tests using spawn.Adam Johnson2022-09-281-2/+8
* Fixed #34010 -- Made parallel tests using spawn set up Django.Adam Johnson2022-09-281-0/+2
* Fixed #33891 -- Fixed test command crash when running in parallel using spawn.Mariusz Felisiak2022-08-041-8/+6
* Fixed #33855 -- Removed unnecessary system check calls from test worker initi...Mariusz Felisiak2022-07-191-8/+1
* Fixed #33719 -- Fixed test command crash when running in parallel.Mariusz Felisiak2022-05-191-2/+16
* Refs #31169 -- Prevented infinite loop in parallel tests with custom test run...David Smith2022-03-171-2/+1
* Fixed #31169 -- Adapted the parallel test runner to use spawn.David Smith2022-03-151-8/+51
* Refs #31169 -- Added DatabaseCreation.setup_worker_connection() hook.Valz2022-02-231-7/+1
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-135/+208
* Fixed #33264 -- Made test runner return non-zero error code for unexpected su...Baptiste Mispelon2021-11-081-1/+1
* Fixed #28401 -- Allowed hashlib.md5() calls to work with FIPS kernels.Ade Lee2021-10-121-2/+2
* Fixed #33149 -- Made test runner --pdb option work with subTest().Abhyudai2021-10-111-0/+5
* Fixed #32552 -- Added logger argument to DiscoverRunner.Chris Jerdonek2021-08-241-9/+17
* Refs #31621 -- Fixed handling --parallel option in test management command an...Mariusz Felisiak2021-08-191-8/+14
* Fixed #32988 -- Prevented creation of more test databases than TestCases.Mariusz Felisiak2021-08-051-0/+3
* Fixed #31621 -- Added support for '--parallel auto' to test management command.Adam Johnson2021-08-031-8/+20
* Fixed #32655 -- Deprecated extra_tests argument for DiscoverRunner.build_suit...Jacob Walls2021-07-161-3/+14
* Fixed #32914 -- Prevented test --shuffle from skipping test methods.Chris Jerdonek2021-07-121-8/+17
* Refs #24522 -- Fixed code comment about seeds in Shuffler.__init__().Chris Jerdonek2021-07-091-1/+1
* Fixed #24522 -- Added a --shuffle option to DiscoverRunner.Chris Jerdonek2021-07-081-9/+145
* Fixed #32609 -- Updated runtests.py to support directory path test labels.Chris Jerdonek2021-06-101-2/+2
* Refs #27734 -- Prevented creation of more parallel workers than TestCases.Ceesjan Luiten2021-06-101-16/+11
* Fixed #32808 -- Prevented DiscoverRunner.build_suite() from mutating test loa...Mariusz Felisiak2021-06-031-3/+15
* Refs #32641 -- Made DiscoverRunner's "Found X tests" message work for finding...Chris Jerdonek2021-06-021-1/+1
* Refs #32552 -- Added DiscoverRunner.log() to allow customization.Daniyal2021-06-011-11/+30
* Fixed #32641 -- Made DiscoverRunner print the number of found tests.girishsontakke2021-04-151-1/+3
* Fixed #32532 -- Made DiscoverRunner raise RuntimeError when a test label is a...Chris Jerdonek2021-04-021-0/+7
* Refs #32532 -- Replaced is_discoverable() with try_importing().Chris Jerdonek2021-04-021-7/+9
* Fixed #29127 -- Prevented DiscoverRunner from hiding tagged test with syntax ...Chris Jerdonek2021-03-301-0/+4
* Simplified and optimized test_match_tags().Chris Jerdonek2021-03-291-2/+3
* Fixed #32591 -- Made DiscoverRunner order _FailedTest objects first.Chris Jerdonek2021-03-261-1/+5
* Fixed typo in DiscoverRunner --reverse help text.Chris Jerdonek2021-03-241-1/+1
* Refs #32532 -- Added DiscoverRunner.load_tests_for_label().Chris Jerdonek2021-03-241-19/+25
* Fixed #31370 -- Added support for parallel tests with --buffer.Adam Johnson2021-03-181-11/+14
* Refs #31370 -- Made RemoteTestResult subclass unittest.TestResult.Adam Johnson2021-03-181-23/+56
* Fixed #32560 -- Fixed test runner with --pdb and --buffer on fail/error.Adam Johnson2021-03-171-0/+2
* Fixed #32540 -- Optimized DiscoverRunner.build_suite() by calling find_top_le...Chris Jerdonek2021-03-151-7/+6
* Refs #32540 -- Added django.test.runner.find_top_level().Chris Jerdonek2021-03-151-22/+25
* Reduced nesting inside DiscoverRunner.build_suite().Chris Jerdonek2021-03-121-8/+7
* Fixed #32529 -- Delayed creating a test suite in build_suite().Chris Jerdonek2021-03-111-18/+15
* Fixed #32516 -- Fixed reorder_suite() with duplicates and reverse=True.Chris Jerdonek2021-03-091-1/+3
* Refs #32489 -- Simplified filter_tests_by_tags().Chris Jerdonek2021-03-081-13/+15
* Refs #32489 -- Simplified partition_suite_by_case().Chris Jerdonek2021-03-081-7/+4
* Refs #32489 -- Removed unneeded partition_suite_by_type().Chris Jerdonek2021-03-081-25/+10
* Fixed #32489 -- Added iter_test_cases() to iterate over a TestSuite.Chris Jerdonek2021-03-051-48/+35
* Simplified for loop in reorder_suite().Chris Jerdonek2021-03-051-2/+2