summaryrefslogtreecommitdiff
path: root/django/test
AgeCommit message (Expand)Author
2021-08-30Fixed #33054 -- Made TestCase.captureOnCommitCallbacks() capture callbacks re...Eugene Morozov
2021-08-24Fixed #32552 -- Added logger argument to DiscoverRunner.Chris Jerdonek
2021-08-19Refs #31621 -- Fixed handling --parallel option in test management command an...Mariusz Felisiak
2021-08-05Fixed #32988 -- Prevented creation of more test databases than TestCases.Mariusz Felisiak
2021-08-03Fixed #31621 -- Added support for '--parallel auto' to test management command.Adam Johnson
2021-07-29Fixed 32956 -- Lowercased spelling of "web" and "web framework" where appropr...David Smith
2021-07-16Fixed #32655 -- Deprecated extra_tests argument for DiscoverRunner.build_suit...Jacob Walls
2021-07-15Fixed #32929 -- Fixed handling query strings in AsyncRequestFactory.pochangl
2021-07-12Fixed #32914 -- Prevented test --shuffle from skipping test methods.Chris Jerdonek
2021-07-09Refs #24522 -- Fixed code comment about seeds in Shuffler.__init__().Chris Jerdonek
2021-07-08Fixed #24522 -- Added a --shuffle option to DiscoverRunner.Chris Jerdonek
2021-07-05Refs #32508 -- Raised ImproperlyConfigured/TypeError instead of using "assert".Mateo Radman
2021-06-29Refs #32655 -- Improved error if iter_test_cases() is passed a string.Chris Jerdonek
2021-06-23Fixed #32790 -- Ensured test Client handles redirects to domain indexes witho...tomhamiltonstubber
2021-06-10Fixed #32609 -- Updated runtests.py to support directory path test labels.Chris Jerdonek
2021-06-10Refs #27734 -- Prevented creation of more parallel workers than TestCases.Ceesjan Luiten
2021-06-08Refs #32355 -- Used addClassCleanup() in SimpleTestCase and SerializeMixin.Mariusz Felisiak
2021-06-04Made SerializeMixin check lockfile attr at import time.Adam Johnson
2021-06-03Fixed #32808 -- Prevented DiscoverRunner.build_suite() from mutating test loa...Mariusz Felisiak
2021-06-02Refs #32641 -- Made DiscoverRunner's "Found X tests" message work for finding...Chris Jerdonek
2021-06-01Refs #32552 -- Added DiscoverRunner.log() to allow customization.Daniyal
2021-04-15Fixed #32641 -- Made DiscoverRunner print the number of found tests.girishsontakke
2021-04-12Fixed #32416 -- Made ThreadedWSGIServer close connections after each thread.Chris Jerdonek
2021-04-12Refs #32416 -- Added LiveServerTestCase._make_connections_override() hook.Chris Jerdonek
2021-04-02Fixed #32532 -- Made DiscoverRunner raise RuntimeError when a test label is a...Chris Jerdonek
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-19Fixed #32556 -- Fixed handling empty string as non-boolean attributes value b...Baptiste Mispelon
2021-03-19Refs #32556 -- Added django.test.html.normalize_attributes().Baptiste Mispelon
2021-03-18Fixed #32556 -- Fixed assertHTMLEqual() to handle empty string as boolean att...Hasan Ramezani
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-18Fixed #32547 -- Corrected notes about validation in HTML assertions docs.Hasan Ramezani
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-11Refs #32489 -- Doc'd and tested iter_test_cases() support for an iterable of ...Chris Jerdonek
2021-03-10Refs #31235 -- Improved assertQuerysetEqual() warning message with stacklevel=2.Claude Paroz
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