summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sqlite3/test_transactions.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.11] gh-108550: Speed up sqlite3 tests (#108551) (#108567)Erlend E. Aasland2023-08-281-10/+6
| | | | | | | | | Disable the busy handler for all concurrency tests; we have full control over the order of the SQLite C API calls, so we can safely do this. test_sqlite3.test_transactions now completes ~10 times faster than before. Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* gh-94028: Clear and reset sqlite3 statements properly in cursor iternext ↵Miss Islington (bot)2022-06-211-0/+39
| | | | | | | (GH-94042) (cherry picked from commit 94eeac03dc8c643ff050e7d0d306637d9556f798) Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@protonmail.com>
* [3.11] gh-93795: Use test.support TESTFN/unlink in sqlite3 tests (GH-93796) ↵Erlend Egeberg Aasland2022-06-141-17/+15
| | | | (#93808)
* bpo-46425: use absolute imports in `test_sqlite3` (GH-30676)Nikita Sobolev2022-01-221-1/+1
|
* bpo-44092: Don't reset statements/cursors before rollback (GH-26026)Erlend Egeberg Aasland2022-01-031-6/+39
| | | In SQLite versions pre 3.7.11, pending statements would block a rollback. This is no longer the case, so remove the workaround.
* bpo-45512: Extend `sqlite3` test suite regarding isolation levels (GH-29576)Erlend Egeberg Aasland2021-11-171-0/+100
|
* bpo-10572: Move `sqlite3` tests to `Lib/test` (GH-29304)Erlend Egeberg Aasland2021-10-291-0/+200
Automerge-Triggered-By: GH:brettcannon