We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3eee3e3 commit 999d7a6Copy full SHA for 999d7a6
tests/test_connection.py
@@ -1922,6 +1922,10 @@ def test_ssl_not_supported(self):
1922
@skip_before_libpq(9, 5)
1923
@skip_after_libpq(16)
1924
def test_ssl_attribute(self):
1925
+ # Skip this test even if libpq built == 15, runtime == 16 (see #1619)
1926
+ if ext.libpq_version() >= 160000:
1927
+ return self.skipTest("libpq runtime version == %s" % ext.libpq_version())
1928
+
1929
attribs = self.conn.info.ssl_attribute_names
1930
self.assert_(attribs)
1931
if self.conn.info.ssl_in_use:
0 commit comments