ci: fix failing tests due to rate-limiting (#2401)
raw.githubusercontent.com URLs are rate-limited now, change URLs
This commit is contained in:
+2
-2
@@ -10,9 +10,9 @@ project_with_ssl_tests = test_projects.new_c_project(
|
||||
from urllib.request import urlopen
|
||||
|
||||
context = ssl.SSLContext(ssl.PROTOCOL_TLSv1_2)
|
||||
# badssl.com is a HTTPS test server that can be used to test SSL connections
|
||||
data = urlopen("https://tls-v1-2.badssl.com", context=context)
|
||||
data = urlopen("https://raw.githubusercontent.com/pypa/cibuildwheel/main/CI.md", context=context)
|
||||
data = urlopen("https://raw.githubusercontent.com/pypa/cibuildwheel/main/CI.md")
|
||||
data = urlopen("https://tls-v1-2.badssl.com")
|
||||
"""
|
||||
)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user