]> granicus.if.org Git - python/commitdiff
bpo-27645: Skip test_bad_target_in_transaction if SQLite == 3.8.7.1 (GH-6067)
authorBerker Peksag <berker.peksag@gmail.com>
Sun, 11 Mar 2018 00:38:50 +0000 (03:38 +0300)
committerGitHub <noreply@github.com>
Sun, 11 Mar 2018 00:38:50 +0000 (03:38 +0300)
Lib/sqlite3/test/backup.py

index 784702fb46e4b0a429570fd4443af98b11081928..2a21489374130f60f03799f31a2361a23911f37d 100644 (file)
@@ -37,6 +37,8 @@ class BackupTests(unittest.TestCase):
             self.cx.backup(bck)
 
     def test_bad_target_in_transaction(self):
+        if sqlite.sqlite_version_info == (3, 8, 7, 1):
+            self.skipTest('skip until we debug https://bugs.python.org/issue27645#msg313562')
         bck = sqlite.connect(':memory:')
         bck.execute('CREATE TABLE bar (key INTEGER)')
         bck.executemany('INSERT INTO bar (key) VALUES (?)', [(3,), (4,)])