summaryrefslogtreecommitdiff
path: root/django/test
AgeCommit message (Expand)Author
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-25Refs #23919 -- Removed misc Python 2/3 references.Tim Graham
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-23Replaced dict() usage with dict literals.Jon Dufresne
2017-01-22Refs #23919 -- Replaced six.reraise by raiseClaude Paroz
2017-01-21Refs #23919 -- Removed misc references to Python 2.Tim Graham
2017-01-21Refs #23919 -- Removed django.utils.decorators.available_attrs() usage.Tim Graham
2017-01-20Refs #23919 -- Removed django.test.mock Python 2 compatibility shim.Tim Graham
2017-01-20Refs #23919 -- Removed unneeded str() callsClaude Paroz
2017-01-20Refs #23919 -- Removed unneeded force_str callsClaude Paroz
2017-01-19Refs #23919 -- Removed reset_warning_registry() workaround for Python < 3.4.2.Tim Graham
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed obsolete __ne__() methods.Aymeric Augustin
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Refs #25190 -- Removed callable_obj parameter to assertRaisesMessages().Tim Graham
2017-01-17Refs #23960 -- Removed the host parameter for SimpleTestCase.assertRedirects().Tim Graham
2017-01-11Refs #16614 -- Made QuerySet.iterator() use server-side cursors on PostgreSQL.François Freitag
2017-01-06Fixed #27698 -- Added django.test.utils.ContextList.get()Tim Graham
2016-12-29Fixed #25415 -- Made DiscoverRunner run system checks.Adam Chainz
2016-12-29Fixed #27622 -- Allowed test client to accept vendor tree JSON content types.Anton Samarchyan
2016-12-27Fixed #15667 -- Added template-based widget rendering.Preston Timmons
2016-12-21Refs #25753 -- Reset l10n cache when format settings changeClaude Paroz
2016-12-07Fixed #27579 -- Added aliases for Python 3's assertion names in SimpleTestCase.Tim Graham
2016-12-01Fixed #27542 -- Made Client.force_login() skip auth backends without get_user().Anton Samarchyan
2016-11-25Fixed #25966 -- Made get_user_model() work at import time.Aymeric Augustin
2016-11-22Fixed #27513 -- Made Signal.send()/send_robust() a tiny bit faster.Adam Chainz
2016-11-21Fixed #27516 -- Made test client's response.json() cache the parsed JSON.Adam Chainz
2016-11-09Fixed #27184 -- Allowed uploading TemporaryFile with the test client.Tom Scrace
2016-10-06Fixed #27301 -- Prevented exceptions that fail unpickling from crashing the p...Adam Wróbel
2016-09-17Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham
2016-09-13Fixed #27214 -- Made skip db features decorators respect wrapping order and i...Simon Charette
2016-08-31Fixed #24112 -- Fixed assertInHTML()'s counting if needle has no root element.Adam Zapletal
2016-08-26Fixed #26942 -- Added support for subtests during parallel testing.Chris Jerdonek
2016-08-25Replaced property() usage with decorator in several places.Berker Peksag
2016-08-19Fixed #22414 -- Ensured that LiveServerTestCase closes connections.Chris Jerdonek
2016-08-17Fixed #27077 -- Made SQLite's in-memory database checks DRYer.Chris Jerdonek
2016-08-17Fixed #26840 -- Added test.utils.setup/teardown_databases().Andreas Pelme
2016-08-15Fixed #27057 -- Made setup_test_environment() store saved settings in one place.Chris Jerdonek
2016-08-12Fixed #27008 -- Added --debug-mode option to DiscoverRunner.Chris Jerdonek
2016-08-10Fixed #27019 -- Made teardown_test_environment() restore the old DEBUG.Chris Jerdonek
2016-08-09Fixed #27035 -- Eased changing settings.DEBUG for DiscoverRunner.Chris Jerdonek
2016-08-08Fixed #27032 -- Prevented setup_test_environment() from being called twice.Chris Jerdonek
2016-08-08Fixed #27028 -- Clarified failed parallel tests message.Adam Zapletal
2016-08-06Fixed #27027 -- Restored Client.force_login() defaulting to the first auth ba...Ben Demboski
2016-08-05Edited docs of test.utils.setup/teardown_test_environment().Chris Jerdonek
2016-08-04Fixed #26981 -- Added DiscoverRunner.get_test_runner_kwargs().Chris Jerdonek