summaryrefslogtreecommitdiff
path: root/django/test
Commit message (Expand)AuthorAgeFilesLines
* Fixed #32172 -- Adapted signals to allow async handlers.Jon Janzen2023-03-072-4/+2
* Fixed #34342, Refs #33735 -- Fixed test client handling of async streaming re...Alexandre Spaeth2023-02-171-9/+26
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-013-5/+1
* Refs #34233 -- Used str.removeprefix()/removesuffix().Mariusz Felisiak2023-01-181-1/+1
* Fixed #34233 -- Dropped support for Python 3.8 and 3.9.Mariusz Felisiak2023-01-182-29/+2
* Refs #33348 -- Removed support for passing response object and form/formset n...Mariusz Felisiak2023-01-171-130/+1
* Refs #33348 -- Removed support for passing errors=None to SimpleTestCase.asse...Mariusz Felisiak2023-01-171-18/+0
* Refs #32655 -- Removed extra_tests argument for DiscoverRunner.build_suite()/...Mariusz Felisiak2023-01-171-20/+3
* Refs #32446 -- Removed SERIALIZE test database setting per deprecation timeline.Mariusz Felisiak2023-01-171-21/+3
* Fixed #34240 -- Preserved headers of requests made with django.test.Client in...Mariusz Felisiak2023-01-132-0/+12
* Refs #26029 -- Deprecated DEFAULT_FILE_STORAGE and STATICFILES_STORAGE settings.Jarosław Wygoda2023-01-121-2/+25
* Fixed #26029 -- Allowed configuring custom file storage backends.Jarosław Wygoda2023-01-121-0/+17
* Refs #33865 -- Improved implementation of FakePayload.Nick Pope2023-01-051-16/+26
* Refs #34118 -- Adopted asgiref coroutine detection shims.Carlton Gibson2022-12-202-5/+5
* Fixed #29062 -- Prevented possibility of database lock when using LiveServerT...baldychristophe2022-11-241-1/+3
* Fixed #34074 -- Added headers argument to RequestFactory and Client classes.David Wobrock2022-11-141-37/+172
* Updated documentation and comments for RFC updates.Nick Pope2022-11-101-2/+2
* Fixed #34063 -- Fixed reading request body with async request factory and cli...Scott Halgrim2022-11-081-3/+7
* Used more augmented assignment statements.Nick Pope2022-10-311-1/+1
* Fixed #34111 -- Made test runner with --debug-sql format SQL queries.Giebisch2022-10-241-1/+5
* Refs #33990 -- Renamed TransactionTestCase.assertQuerysetEqual() to assertQue...Gregor Gärtner2022-10-081-1/+10
* Refs #33990 -- Renamed SimpleTestCase.assertFormsetError() to assertFormSetEr...Gregor Gärtner2022-10-071-8/+17
* 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 #33616 -- Allowed registering callbacks that can fail in transaction.on...SirAbhi132022-09-061-2/+17
* 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 #33755 -- Moved ASGI body-file cleanup into request class.Jonas Lundberg2022-06-091-0/+3
* Fixed #33719 -- Fixed test command crash when running in parallel.Mariusz Felisiak2022-05-191-2/+16
* Fixed #33348 -- Changed SimpleTestCase.assertFormError()/assertFormsetErrors(...Baptiste Mispelon2022-04-061-90/+169
* Refs #31169 -- Prevented infinite loop in parallel tests with custom test run...David Smith2022-03-171-2/+1
* Prevented initialization of unused database connections.Florian Apolloner2022-03-172-3/+3
* Fixed #31169 -- Adapted the parallel test runner to use spawn.David Smith2022-03-151-8/+51
* Rewrote some references to "master".Adam Johnson2022-03-081-2/+2
* Refs #31169 -- Added DatabaseCreation.setup_worker_connection() hook.Valz2022-02-231-7/+1
* Refs #33348 -- Made SimpleTestCase.assertFormError() raise ValueError when "f...Baptiste Mispelon2022-02-151-0/+4
* Refs #33348 -- Fixed SimpleTestCase.assertFormError() error message raised fo...Mariusz Felisiak2022-02-151-1/+1
* Refs #33348 -- Improved messages raised by SimpleTestCase.assertFormError()/a...Baptiste Mispelon2022-02-151-104/+43
* Refs #33348 -- Made SimpleTestCase.assertFormsetErrors() raise an error when ...Baptiste Mispelon2022-02-141-1/+9
* Refs #33348 -- Made SimpleTestCase.assertFormError()/assertFormsetErrors() ra...Baptiste Mispelon2022-02-141-0/+12
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-072-12/+44
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-078-748/+1291
* Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak2022-02-031-2/+1
* Refs #20349 -- Avoided loading testing libraries when not needed.Collin Anderson2022-01-252-3/+4
* Fixed #28628 -- Changed \d to [0-9] in regexes where appropriate.Ad Timmering2022-01-071-1/+1
* Refs #33348 -- Deprecated passing errors=None to SimpleTestCase.assertFormErr...Baptiste Mispelon2022-01-061-9/+22
* Fixed #33410 -- Fixed recursive capturing of callbacks by TestCase.captureOnC...Petter Friberg2022-01-061-7/+5
* Fixed #33400 -- Added support for msg_prefix and count arguments to assertTem...Ad Timmering2022-01-051-32/+30
* Refs #33400 -- Renamed SimpleTestCase._assert_template_used() to _get_templat...Ad Timmering2022-01-051-3/+3
* Changed signatures of setting_changed signal receivers.Adam Johnson2021-12-171-34/+36