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 eec9474 commit e32d214Copy full SHA for e32d214
test/__init__.py
@@ -1075,6 +1075,9 @@ def __init__(self, ca_certs):
1075
raise SkipTest(
1076
"LibreSSL on OSX doesn't support setting CA certificates "
1077
"using SSL_CERT_FILE environment variable.")
1078
+ if sys.platform == 'win32' and _ssl.IS_PYOPENSSL:
1079
+ raise SkipTest(
1080
+ "SSL_CERT_FILE does not work on Windows with PyOpenSSL")
1081
self.original_certs = os.environ.get('SSL_CERT_FILE')
1082
# Tell OpenSSL where CA certificates live.
1083
os.environ['SSL_CERT_FILE'] = ca_certs
0 commit comments