summaryrefslogtreecommitdiff
path: root/tests/servers
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-012-4/+0
* Fixed #28054 -- Made runserver not return response body for HEAD requests.Sarah Boyce2023-01-271-7/+62
* Fixed thread termination in servers.tests.LiveServerPort on Python 3.10.9+, 3...Mariusz Felisiak2023-01-121-12/+18
* Fixed #29062 -- Prevented possibility of database lock when using LiveServerT...baldychristophe2022-11-241-3/+29
* Refs #33990 -- Renamed TransactionTestCase.assertQuerysetEqual() to assertQue...Gregor Gärtner2022-10-081-1/+1
* Relaxed some query ordering assertions in various tests.Mariusz Felisiak2022-04-141-2/+2
* Rewrote some references to "master".Adam Johnson2022-03-081-1/+1
* Removed redundant QuerySet.all() calls in docs and tests.Nick Pope2022-02-221-1/+1
* Refs #25684 -- Removed double newline from request/response output of runserver.rafrafek2022-02-141-2/+2
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-074-130/+151
* Fixed #27079 -- Avoided multiple setUpClass()/tearDownClass() calls in LiveSe...Jacob Walls2021-10-261-25/+15
* Fixed typo in tests/servers/tests.py.Jacob Walls2021-10-251-3/+3
* Refs #32956 -- Changed docs to treat the acronym HTTP phonetically.David Smith2021-10-181-1/+1
* Fixed #32416 -- Made ThreadedWSGIServer close connections after each thread.Chris Jerdonek2021-04-121-1/+68
* Fixed #32445 -- Fixed LiveServerThreadTest.test_closes_connections() for non-...Chris Jerdonek2021-02-231-5/+11
* Fixed #32437 -- Fixed cleaning up ALLOWED_HOSTS in LiveServerTestCase on setU...Chris Jerdonek2021-02-121-0/+37
* Refs #32416 -- Added LiveServerThread.server_class to ease subclassing.Chris Jerdonek2021-02-121-0/+16
* Refs #32394 -- Changed STATIC_URL/MEDIA_URL to relative paths in tests and do...Markus Holtermann2021-02-061-2/+2
* Fixed typo in tests/servers/tests.py.Mariusz Felisiak2020-12-151-2/+2
* Fixed #32240 -- Made runserver suppress ConnectionAbortedError/ConnectionRese...Petter Strandmark2020-12-141-12/+19
* Refs #4444 -- Added tests for handling broken pipe errors in WSGIServer.Petter Strandmark2020-12-141-1/+24
* Fixed #32178 -- Allowed database backends to skip tests and mark expected fai...Hasan Ramezani2020-12-101-2/+0
* Replaced unnecessary str()/bytes() calls with literals.Jon Dufresne2019-11-181-1/+1
* Fixed #30619 -- Made runserver --nothreading use single threaded WSGIServer.atsuo ishimoto2019-07-101-0/+37
* Fixed #30171 -- Fixed DatabaseError in servers tests.Jon Dufresne2019-02-141-3/+2
* Removed default empty content argument from HttpResponse calls.Jon Dufresne2019-02-091-1/+1
* Fixed #30137 -- Replaced OSError aliases with the canonical OSError.Jon Dufresne2019-01-281-2/+2
* Refs #28478 -- Deprecated TestCase's allow_database_queries and multi_db in f...Simon Charette2019-01-101-4/+2
* Updated test URL patterns to use path() and re_path().Tim Graham2018-12-311-10/+10
* Fixed #30015 -- Ensured request body is properly consumed for keep-alive conn...Konstantin Alekseev2018-12-193-0/+24
* Made reused RequestFactory instances class attributes.Simon Charette2018-11-271-2/+3
* Fixed keep-alive support in manage.py runserver.Florian Apolloner2018-11-103-19/+54
* Captured logging in tests with self.assertLogs().Claude Paroz2018-05-071-31/+20
* Replaced django.test.utils.patch_logger() with assertLogs().Claude Paroz2018-05-071-14/+10
* Refs #28440 -- Fixed server connection closing test on macOS.Tom2017-10-131-1/+2
* Fixed #27857 -- Dropped support for Python 3.4.Tim Graham2017-09-251-6/+1
* Fixed #28440 -- Fixed WSGIServer hang on responses without a Content-Length.Tom2017-09-121-12/+31
* Fixed ResourceWarnings in tests/servers/tests.py.Jon Dufresne2017-06-052-6/+10
* Fixed #28212 -- Allowed customizing the port that LiveServerTestCase uses.Robert Rollins2017-05-301-0/+18
* Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne2017-05-271-1/+1
* Decreased max_length for char fields unless absolutely needed. (#8485)Florian Apolloner2017-05-101-1/+1
* Fixed #25619 -- Made runserver serve with HTTP 1.1 protocolClaude Paroz2017-02-231-0/+16
* Fixed #20238 -- Added threading support to LiveServerTestCase.Nadège Michel2017-02-093-0/+36
* Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham2017-02-091-1/+1
* Refs #23919 -- Replaced usage of django.utils.http utilities with Python equi...Claude Paroz2017-01-261-1/+1
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-1/+1
* Refs #23919 -- Removed unneeded str() callsClaude Paroz2017-01-201-1/+1
* Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham2017-01-201-2/+1
* Refs #23919 -- Removed str() conversion of type and method __name__.Simon Charette2017-01-191-1/+1
* Refs #23919 -- Removed obsolete contextlib.closing() calls (for Python 2).Tim Graham2017-01-191-6/+5