From 893b4e03921eb1a86e202988bf247251d0d2fae9 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 14 Dec 2021 15:44:39 -0500 Subject: [PATCH] skip rowcount test for psycopg psycopg is failing to report correct rowcount for this test against PostgreSQL 14 only as of psycopg 3.0.5 or 3.0.6; works in 3.0.4 skip test until a report can be filed w/ psycopg Change-Id: I6a0b8c26314a9e451a1c93c3e48665c650115982 --- test/orm/test_unitofworkv2.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/orm/test_unitofworkv2.py b/test/orm/test_unitofworkv2.py index c93cc2edfc..0e89fa62df 100644 --- a/test/orm/test_unitofworkv2.py +++ b/test/orm/test_unitofworkv2.py @@ -1928,6 +1928,7 @@ class BasicStaleChecksTest(fixtures.MappedTest): ) @testing.requires.sane_multi_rowcount + @testing.skip_if("+psycopg", "unknown regression as of psycopg 3.0.6") def test_delete_multi_missing_warning(self): Parent, Child = self._fixture() sess = fixture_session() -- 2.47.2