From 693b8744ee45ebb65bfcbb9156935ffb2a3ee9ad Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 5 Jun 2023 23:01:57 -0400 Subject: [PATCH] skip sqlite file for this test the cursor not being consumed leaves the database locked until the program exits. i cant find any way to free up the file otherwise Change-Id: Iaa723e217a9206c91e748cf9b0775a06209d599c --- test/engine/test_reconnect.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/engine/test_reconnect.py b/test/engine/test_reconnect.py index 00984b5a4d..a7883efa2f 100644 --- a/test/engine/test_reconnect.py +++ b/test/engine/test_reconnect.py @@ -1488,6 +1488,9 @@ class PrePingRealTest(fixtures.TestBase): class InvalidateDuringResultTest(fixtures.TestBase): __backend__ = True + # test locks SQLite file databases due to unconsumed results + __requires__ = ("ad_hoc_engines",) + def setup_test(self): self.engine = engines.reconnecting_engine() self.meta = MetaData() -- 2.47.3