summaryrefslogtreecommitdiff
path: root/tests/servers/tests.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-3/+0
* 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 #33476 -- Reformatted code with Black.django-bot2022-02-071-78/+95
* 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 #32437 -- Fixed cleaning up ALLOWED_HOSTS in LiveServerTestCase on setU...Chris Jerdonek2021-02-121-0/+37
* 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
* 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 #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
* Fixed #30015 -- Ensured request body is properly consumed for keep-alive conn...Konstantin Alekseev2018-12-191-0/+17
* Fixed keep-alive support in manage.py runserver.Florian Apolloner2018-11-101-18/+48
* 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-051-1/+4
* Fixed #28212 -- Allowed customizing the port that LiveServerTestCase uses.Robert Rollins2017-05-301-0/+18
* 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-091-0/+16
* 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 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
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-2/+2
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-2/+1
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-3/+0
* Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za2016-11-101-22/+3
* Fixed #22414 -- Ensured that LiveServerTestCase closes connections.Chris Jerdonek2016-08-191-1/+2
* Fixed #26791 -- Replaced LiveServerTestCase port ranges with binding to port 0.Tim Graham2016-06-231-44/+1
* Fixed flake8 2.6 warnings.Tim Graham2016-06-161-10/+4
* Refs #26011 -- Fixed AttributeError in test_port_bind test.Marten Kenbeek2016-01-021-1/+1
* Fixed #26011 -- Prevented random LiveServerTestCase test failures on Windows.Marten Kenbeek2015-12-311-0/+29
* Fixed some unclosed objects in testsAndriy Sokolovskiy2015-07-061-10/+11
* Fixed #24965 -- Made LiveServerTestCase.live_server_url accessible from classMoritz Sichert2015-06-121-4/+7
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-4/+2
* Fixed #21281 -- Made override_settings act at class level when used as a Test...Thomas Chaumeny2014-11-031-14/+1
* Fixed #21977 -- Deprecated SimpleTestCase.urlsAnubhav Joshi2014-04-061-1/+1
* Fixed many typos in comments and docstrings.Rodolfo Carvalho2014-03-031-1/+1
* Imported override_settings from its new location.Aymeric Augustin2013-12-231-1/+1
* Fixing E302 ErrorsJason Myers2013-11-021-0/+1