File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -498,11 +498,13 @@ def test_start_tls_server_1(self):
498498
499499 server_context = test_utils .simple_server_sslcontext ()
500500 client_context = test_utils .simple_client_sslcontext ()
501- if sys .platform .startswith ('freebsd' ) or sys .platform .startswith ('win' ):
501+ if (sys .platform .startswith ('freebsd' )
502+ or sys .platform .startswith ('win' )
503+ or sys .platform .startswith ('darwin' )):
502504 # bpo-35031: Some FreeBSD and Windows buildbots fail to run this test
503505 # as the eof was not being received by the server if the payload
504506 # size is not big enough. This behaviour only appears if the
505- # client is using TLS1.3.
507+ # client is using TLS1.3. Also seen on macOS.
506508 client_context .options |= ssl .OP_NO_TLSv1_3
507509 answer = None
508510
You can’t perform that action at this time.
0 commit comments