Skip to content

Commit 7280a4e

Browse files
authored
bpo-27645: Skip test_bad_target_in_transaction if SQLite == 3.8.7.1 (GH-6067)
1 parent d7aed41 commit 7280a4e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/sqlite3/test/backup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ def test_bad_target_closed_connection(self):
3737
self.cx.backup(bck)
3838

3939
def test_bad_target_in_transaction(self):
40+
if sqlite.sqlite_version_info == (3, 8, 7, 1):
41+
self.skipTest('skip until we debug https://bugs.python.org/issue27645#msg313562')
4042
bck = sqlite.connect(':memory:')
4143
bck.execute('CREATE TABLE bar (key INTEGER)')
4244
bck.executemany('INSERT INTO bar (key) VALUES (?)', [(3,), (4,)])

0 commit comments

Comments
 (0)