Skip to content

Commit

Permalink
Disable test_ssl_attribute on PG16+
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
df7cb authored and dvarrazzo committed May 29, 2023
1 parent c96f991 commit 8b17e21
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -1920,6 +1920,7 @@ def test_ssl_not_supported(self):
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)
Expand Down

0 comments on commit 8b17e21

Please sign in to comment.