Thanks to visit codestin.com Credit goes to github.com
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 f3fb839 commit a514f78Copy full SHA for a514f78
1 file changed
Lib/test/test_asyncio/test_sslproto.py
@@ -498,11 +498,13 @@ def test_start_tls_server_1(self):
498
499
server_context = test_utils.simple_server_sslcontext()
500
client_context = test_utils.simple_client_sslcontext()
501
- if sys.platform.startswith('freebsd') or sys.platform.startswith('win'):
+ if (sys.platform.startswith('freebsd')
502
+ or sys.platform.startswith('win')
503
+ or sys.platform.startswith('darwin')):
504
# bpo-35031: Some FreeBSD and Windows buildbots fail to run this test
505
# as the eof was not being received by the server if the payload
506
# size is not big enough. This behaviour only appears if the
- # client is using TLS1.3.
507
+ # client is using TLS1.3. Also seen on macOS.
508
client_context.options |= ssl.OP_NO_TLSv1_3
509
answer = None
510
0 commit comments