From 81398573779633d36661640c400151acec43e005 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Wed, 1 Feb 2023 23:20:57 +0100 Subject: Skip over problematic tests on Windows --- tests/test_ssl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_ssl.py b/tests/test_ssl.py index e18adf5..2898e90 100644 --- a/tests/test_ssl.py +++ b/tests/test_ssl.py @@ -247,6 +247,7 @@ class HttpslibSSLClientTestCase(BaseSSLClientTestCase): httpslib.HTTPSConnection('example.org', badKeyword=True) +@unittest.skipIf(sys.platform == 'win32', "Test doesn't work on Windows") class HttpslibSSLSNIClientTestCase(BaseSSLClientTestCase): def setUp(self): super(HttpslibSSLSNIClientTestCase, self).setUp() -- cgit v1.2.1