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 e67ab2e commit d281290Copy full SHA for d281290
tests/test_public_key.py
@@ -71,7 +71,8 @@
71
except subprocess.CalledProcessError: # pragma: no cover
72
_openssl_version = b''
73
74
-_openssl_available = _openssl_version != b''
+# Disable reliance on OpenSSL on Windows for now due to GitHub runner issues
75
+_openssl_available = _openssl_version != b'' and sys.platform != 'win32'
76
77
if _openssl_available: # pragma: no branch
78
_openssl_curves = run('openssl ecparam -list_curves')
0 commit comments