summaryrefslogtreecommitdiff
path: root/tests/transactions
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-12/+0
* Improved test coverage for django.db.transaction.Pablo2022-12-051-0/+16
* Fixed #23353 -- Used "raise from" when raising TransactionManagementError.David Wobrock2022-10-031-1/+4
* Fixed DatabaseFeatures.uses_savepoints/can_release_savepoints and related tes...Mariusz Felisiak2022-04-181-0/+1
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-4/+7
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-072-37/+59
* Fixed #33161 -- Enabled durability check for nested atomic blocks in TestCase.Krzysztof Jagiello2021-11-121-36/+12
* Fixed isolation of NonAutocommitTests.test_orm_query_after_error_and_rollback().Mariusz Felisiak2021-07-091-7/+8
* Fixed #32220 -- Added durable argument to transaction.atomic().Ian Foote2020-11-271-1/+74
* Fixed #31235 -- Made assertQuerysetEqual() compare querysets directly.Hasan Ramezani2020-11-061-43/+37
* Fixed #30116 -- Dropped support for Python 3.5.Tim Graham2019-01-301-2/+0
* Fixed #21171 -- Avoided starting a transaction when a single (or atomic queri...Florian Apolloner2018-10-171-1/+47
* Used skip(If|Unless)DBFeature in transactions tests.Jon Dufresne2018-10-041-11/+5
* Used assertRaisesMessage() to test Django's error messages.Mads Jensen2017-07-291-4/+9
* Reverted "Refs #16682 -- Tested transaction.atomic() with KeyboardInterrupt."Tim Graham2017-03-091-14/+0
* Fixed #27683 -- Made MySQL default to the read committed isolation level.Tim Graham2017-02-011-10/+13
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-1/+1
* Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz2017-01-181-2/+0
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-182-4/+0
* Refs #16682 -- Replaced signal number with equivalent signal.SIGINT.Mariusz Felisiak2016-11-251-2/+3
* Fixed #27504 -- Allowed using the ORM after an error and rollback when autoco...Mark Young2016-11-231-2/+22
* Refs #16682 -- Tested transaction.atomic() with KeyboardInterrupt.Claude Paroz2016-09-211-0/+13
* Fixed E128 flake8 warnings in tests/.Tim Graham2016-04-081-14/+16
* Refs #26022 -- Replaced six.assertRaisesRegex with assertRaisesMessage as app...Hasan2016-01-291-20/+19
* Fixed #24921 -- set_autocommit(False) + ORM queries.Aymeric Augustin2015-09-211-2/+15
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-3/+7
* Removed threading fallback imports.Tim Graham2015-01-281-4/+1
* Removed numbering from the models.py header of some test packages.Loic Bistuer2014-09-241-1/+1
* Fixed #23074 -- Avoided leaking savepoints in atomic.Aymeric Augustin2014-07-281-0/+22
* Fixed #21239 -- Maintained atomicity when closing the connection.Aymeric Augustin2014-04-101-2/+16
* Fixed #22291 -- Avoided shadowing deadlock exceptions on MySQL.Aymeric Augustin2014-03-231-1/+46
* Removed legacy transaction management per the deprecation timeline.Aymeric Augustin2014-03-211-339/+1
* Ensure cursors are closed when no longer needed.Michael Manfre2014-02-021-6/+7
* Fixing E302 ErrorsJason Myers2013-11-021-5/+11
* Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol2013-10-211-1/+1
* Fixed #21268 -- Fixed E303 pep8 warningsAlasdair Nicol2013-10-181-1/+0
* Fixed #21134 -- Prevented queries in broken transactions.Aymeric Augustin2013-09-301-27/+44
* Translated a test to English for consistency.Aymeric Augustin2013-09-221-2/+2
* Partial revert of 165f44aa.Aymeric Augustin2013-09-221-82/+97
* Combine consecutive with statementsClaude Paroz2013-08-161-97/+82
* Removed most of absolute_import importsClaude Paroz2013-07-291-1/+1
* Stopped using django.utils.unittest in the test suite.Aymeric Augustin2013-07-011-1/+1
* Advanced deprecation warnings for Django 1.7.Aymeric Augustin2013-06-291-4/+4
* Fixed #20571 -- Added an API to control connection.needs_rollback.Aymeric Augustin2013-06-271-2/+24
* Defined available_apps in relevant tests.Aymeric Augustin2013-06-101-0/+16
* Moved IgnorePendingDeprecationWarningsMixin in django.test.utils.Aymeric Augustin2013-05-181-13/+1
* Made atomic usable when autocommit is off.Aymeric Augustin2013-03-131-11/+19
* Fixed #20028 -- Made atomic usable on callable instances.Aymeric Augustin2013-03-121-0/+11
* Improved the API of set_autocommit.Aymeric Augustin2013-03-111-3/+3
* Added an option to disable the creation of savepoints in atomic.Aymeric Augustin2013-03-111-0/+93