Disable test in CI

CI testing doesnt have env var set
This commit is contained in:
Kovid Goyal
2026-05-08 13:42:53 +05:30
parent 71a3a4d7ae
commit 7790a9709f
+1 -1
View File
@@ -521,7 +521,7 @@ class BuildTest(unittest.TestCase):
def test_openssl(self):
import ssl
ssl.PROTOCOL_TLSv1_2
if ismacos or iswindows:
if ismacos or (iswindows and not is_ci):
paths = ssl.get_default_verify_paths()
capath = paths.capath
if not capath or os.path.basename(capath) != 'mozilla-ca-certs' or not os.path.isdir(capath):