| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-07-30 | Fixed #25190 -- Deprecated callable_obj parameter to assertRaisesMessage(). | Tim Graham | |
| Thanks Aymeric Augustin for review. | |||
| 2015-07-27 | Fixed #21127 -- Started deprecation toward requiring on_delete for ↵ | Flavio Curella | |
| ForeignKey/OneToOneField | |||
| 2015-05-20 | Refs #24652 -- Used SimpleTestCase where appropriate. | Simon Charette | |
| 2015-05-20 | Fixed #24652 -- Disallowed query execution in SimpleTestCase subclasses. | Simon Charette | |
| Thanks to Tim and Anssi for the review. | |||
| 2015-05-18 | Added backwards compatibility for assertRaisesMessage callable_obj param. | Tim Graham | |
| This was broken in c2bc1cefdcbbf074408f4a4cace88b315cf9d652 (refs #23763). | |||
| 2015-02-06 | Sorted imports with isort; refs #23860. | Tim Graham | |
| 2015-02-04 | Fixed #24197 -- Added clearing of staticfiles caches on settings changes ↵ | mlavin | |
| during tests Cleared caching in staticfiles_storage and get_finder when relevant settings are changed. | |||
| 2014-12-24 | Fixed typo in test_utils comment. | Tim Graham | |
| 2014-12-01 | Fixed #23933 -- Made override_settings(DATABASE_ROUTERS) affect the master ↵ | wrwrwr | |
| router. | |||
| 2014-11-03 | Fixed #23300 -- Made assertTemplateUsed throw an error on responses not ↵ | Davide Ceretti | |
| fetched using the test client. Thanks zags for the report and bmispelon for the patch. | |||
| 2014-11-03 | Fixed #23620 -- Used more specific assertions in the Django test suite. | Berker Peksag | |
| 2014-10-31 | Avoided using private API get_template_from_string. | Aymeric Augustin | |
| 2014-10-08 | Fixed #23600 -- Made default_storage aware of more settings changes. | Duncan Parkes | |
| Added MEDIA_URL, FILE_UPLOAD_PERMISSIONS, and FILE_UPLOAD_DIRECTORY_PERMISSIONS to the list of settings. | |||
| 2014-09-30 | Fixed flake8 warnings. | Tim Graham | |
| 2014-09-29 | Fixed #23567 -- Made assertQuerysetEqual check Counter equality when ↵ | Thomas Chaumeny | |
| ordered=False | |||
| 2014-08-26 | Allowed skipIf/UnlessDBFeature to accept several feature strings | Claude Paroz | |
| 2014-05-05 | Fixed #22572 -- override_settings(ROOT_URLCONF) didn't clear ↵ | Loic Bistuer | |
| urlresolvers._urlconfs. Thanks Anubhav Joshi and Tim Graham for the reviews. | |||
| 2014-04-18 | Fixed #22465 -- New assertion assertJSONNotEqual | amatellanes | |
| 2014-04-16 | Fixed #22378 -- Updated \d to [0-9]+ in urlpatterns of docs and tests. | chriscauley | |
| Thanks tomwys for the suggestion. | |||
| 2014-04-06 | Fixed #21977 -- Deprecated SimpleTestCase.urls | Anubhav Joshi | |
| 2014-04-03 | Fixed #22218 -- Deprecated django.conf.urls.patterns. | Tim Graham | |
| Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews. | |||
| 2014-03-21 | Removed django.test.simple and django.test._doctest per deprecation timeline. | Tim Graham | |
| refs #17365, #17366, #18727. | |||
| 2014-02-07 | Fixed #21518 -- Made override_settings(ROOT_URLCONF) clear the resolver cache. | Chris Wilson | |
| Thanks Aymeric Augustin and Simon Charette for reviews. | |||
| 2013-12-11 | Fixed #21462 -- Made `assertNumQueries` print executed queries on failure. | Dominic Rodger | |
| 2013-12-10 | Fixed E124 pep8 warnings. | Loic Bistuer | |
| 2013-11-08 | Flake8 fix -- correct number of newlines between top level definitions | Alex Gaynor | |
| 2013-11-08 | Fixed #17529 -- get_template_from_string default arguments break | Unai Zalakain | |
| ``get_template_from_string`` default arguments were breaking ``assertTemplateUsed``. The solution has been to return only the names of the templates with a ``name`` attribute distinct of ``None``. The default ``name`` kwarg of ``Template`` has been changed to ``None``, more pythonic than ``'<Unknown Template>'``. | |||
| 2013-11-02 | Fixing E302 Errors | Jason Myers | |
| Signed-off-by: Jason Myers <jason@jasonamyers.com> | |||
| 2013-10-26 | Fixed all the E203 violations | Alex Gaynor | |
| 2013-10-17 | Fixed #21285 -- Fixed E121,E122 pep8 warnings | Alasdair Nicol | |
| 2013-10-10 | Removed unnecessary semicolons. | Tim Graham | |
| 2013-09-22 | Partial revert of 165f44aa. | Aymeric Augustin | |
| That commit didn't always improve readability. See discussion on django-developers for details. | |||
| 2013-09-02 | Replaced "not PY3" by "PY2", new in six 1.4.0. | Aymeric Augustin | |
| 2013-08-16 | Combine consecutive with statements | Claude Paroz | |
| Python 2.7 allows to combine several 'with' instructions. | |||
| 2013-07-29 | Removed most of absolute_import imports | Claude Paroz | |
| Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way. | |||
| 2013-07-19 | Fixed #18551 -- Enabled skipIfDBFeature/skipUnlessDBFeature to decorate a class | Claude Paroz | |
| Thanks Tim Graham for the review and improved patch. | |||
| 2013-07-01 | Removed tests for django.utils.unittest vs. unittest. | Aymeric Augustin | |
| Silenced warnings caused by the deprecation of django.utils.unittest. Thanks Preston Timmons and Carl Meyer for their advice. Fixed #20680. | |||
| 2013-07-01 | Stopped using django.utils.unittest in the test suite. | Aymeric Augustin | |
| Refs #20680. | |||
| 2013-06-29 | Advanced deprecation warnings for Django 1.7. | Aymeric Augustin | |
| 2013-06-29 | More import removals | Claude Paroz | |
| Following the series of commits removing deprecated features in Django 1.7, here are some more unneeded imports removed and other minor cleanups. | |||
| 2013-06-28 | Removed warnings level handling code as per deprecation TL. | Ramiro Morales | |
| 2013-06-14 | Fixed #20548 -- Removed all PendingDeprecationWarnings from django test suite | Marc Tamlyn | |
| 2013-04-13 | Used a Python 3 compatible StringIO in test_utils | Claude Paroz | |
| 2013-04-12 | Modified test_utils to work with unittest2 discovery. | Preston Timmons | |
| 2013-03-02 | Added a context manager to capture queries while testing. | Simon Charette | |
| Also made some import cleanups while I was there. Refs #10399. | |||
| 2013-02-26 | Renamed some tests and removed references to modeltests/regressiontests. | Florian Apolloner | |
| 2013-02-26 | Merged regressiontests and modeltests into the test root. | Florian Apolloner | |
