From c1658d71ad02c7d3f5c950420362ea87c9ee9dc9 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Mon, 11 May 2020 18:54:24 +1200 Subject: [PATCH] Skip hostaddr test with libpq < 12 too for the moment --- tests/pq/test_pgconn.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/pq/test_pgconn.py b/tests/pq/test_pgconn.py index 3e8593dea..d023ade14 100644 --- a/tests/pq/test_pgconn.py +++ b/tests/pq/test_pgconn.py @@ -177,6 +177,7 @@ def test_hostaddr(pgconn): pgconn.hostaddr +@pytest.mark.xfail @pytest.mark.libpq("< 12") def test_hostaddr_missing(pgconn): with pytest.raises(psycopg3.NotSupportedError): -- 2.47.3