mirror of
https://github.com/python/cpython.git
synced 2025-08-31 22:18:28 +00:00
bpo-27645: Add support for native backup facility of SQLite (GH-4238)
This commit is contained in:
parent
c10b288f34
commit
d7aed4102d
7 changed files with 369 additions and 2 deletions
|
@ -7,7 +7,7 @@ import unittest
|
|||
import sqlite3
|
||||
from sqlite3.test import (dbapi, types, userfunctions,
|
||||
factory, transactions, hooks, regression,
|
||||
dump)
|
||||
dump, backup)
|
||||
|
||||
def load_tests(*args):
|
||||
if test.support.verbose:
|
||||
|
@ -18,7 +18,8 @@ def load_tests(*args):
|
|||
userfunctions.suite(),
|
||||
factory.suite(), transactions.suite(),
|
||||
hooks.suite(), regression.suite(),
|
||||
dump.suite()])
|
||||
dump.suite(),
|
||||
backup.suite()])
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue