From: Mike Bayer Date: Tue, 6 Jun 2023 03:01:57 +0000 (-0400) Subject: skip sqlite file for this test X-Git-Tag: rel_2_0_16~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=693b8744ee45ebb65bfcbb9156935ffb2a3ee9ad;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 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 --- 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()