From 6bbfce7b896a96d9f25906936faf1572432e751e Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Sat, 16 Feb 2019 22:56:44 +0100 Subject: [PATCH] Skip password encryption test if libpq < 10 --- tests/test_connection.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_connection.py b/tests/test_connection.py index e450883c..e3753f91 100755 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -1432,6 +1432,7 @@ class TestEncryptPassword(ConnectingTestCase): scope=self.conn, algorithm='md5'), 'md594839d658c28a357126f105b9cb14cfc') + @skip_before_libpq(10) @skip_before_postgres(10) def test_encrypt_server(self): cur = self.conn.cursor()