From 09bc5c7525445018f54e6a229c9624bc65132711 Mon Sep 17 00:00:00 2001 From: Christoph Berg Date: Mon, 29 May 2023 13:13:08 +0200 Subject: [PATCH] Disable test_ssl_attribute on PG16+ PG15 changed the semantics of some ssl attributes (#1506), and a very similar regression test failure has now been observed again with PG16. Disable the test for now. --- tests/test_connection.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_connection.py b/tests/test_connection.py index f9377e23..b1fb315f 100755 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -1920,6 +1920,7 @@ class TestConnectionInfo(ConnectingTestCase): self.conn.info.ssl_attribute('wat') @skip_before_libpq(9, 5) + @skip_after_libpq(16) def test_ssl_attribute(self): attribs = self.conn.info.ssl_attribute_names self.assert_(attribs)