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 @@ -495,11 +495,13 @@ def test_start_tls_server_1(self):
495
495
496
496
server_context = test_utils .simple_server_sslcontext ()
497
497
client_context = test_utils .simple_client_sslcontext ()
498
- if sys .platform .startswith ('freebsd' ) or sys .platform .startswith ('win' ):
498
+ if (sys .platform .startswith ('freebsd' )
499
+ or sys .platform .startswith ('win' )
500
+ or sys .platform .startswith ('darwin' )):
499
501
# bpo-35031: Some FreeBSD and Windows buildbots fail to run this test
500
502
# as the eof was not being received by the server if the payload
501
503
# size is not big enough. This behaviour only appears if the
502
- # client is using TLS1.3.
504
+ # client is using TLS1.3. Also seen on macOS.
503
505
client_context .options |= ssl .OP_NO_TLSv1_3
504
506
answer = None
505
507
You can’t perform that action at this time.
0 commit comments