summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2023-02-01 23:20:57 +0100
committerMatěj Cepl <mcepl@cepl.eu>2023-02-02 12:51:41 +0100
commit81398573779633d36661640c400151acec43e005 (patch)
tree8c20419657a68b5161fddfbc4d3a49b0d9724493
parent52566cee629aaf8c50160aeba06ac6289cbea231 (diff)
downloadm2crypto-81398573779633d36661640c400151acec43e005.tar.gz
Skip over problematic tests on Windows
-rw-r--r--tests/test_ssl.py1
1 files changed, 1 insertions, 0 deletions
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()