summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sqlite3/test_backup.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-105539: Fix ResourceWarning from unclosed SQLite connections in ↵Mariusz Felisiak2023-08-231-1/+1
| | | | | | | | | | | | | test_sqlite3 (#108360) Follow up to 1a1bfc28912a39b500c578e9f10a8a222638d411. Explicitly manage connections in: - test_audit.test_sqlite3 - test_sqlite3.test_audit - test_sqlite3.test_backup Co-authored-by: Erlend E. Aasland <erlend@python.org>
* gh-105539: Explict resource management for connection objects in sqlite3 ↵Erlend E. Aasland2023-08-171-25/+27
| | | | | | | | tests (#108017) - Use memory_database() helper - Move test utility functions to util.py - Add convenience memory database mixin - Add check() helper for closed connection tests
* gh-105875: Require SQLite 3.15.2 or newer (#105876)Erlend E. Aasland2023-06-181-2/+0
| | | SQLite 3.15.2 was released 2016-11-28.
* bpo-10572: Move `sqlite3` tests to `Lib/test` (GH-29304)Erlend Egeberg Aasland2021-10-291-0/+164
Automerge-Triggered-By: GH:brettcannon