File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -678,15 +678,13 @@ def __int__(self):
678678 arg = "10.2" )
679679
680680 def test_sync_wait_cancel_01 (self ):
681- if sys .platform == 'darwin' and sys . version_info >= (3 , 13 ):
682- # On macOS with Python 3.13+ the test hangs indefinitely because
681+ if sys .version_info >= (3 , 13 ):
682+ # On Python 3.13 and higher, this test hangs indefinitely because
683683 # OpenSSL socket is not thread-safe, and sending TERMINATE_MSG is
684684 # blocked by a concurrent recv() call waiting for the lock.
685685 # This may happen to any environment, so maybe we should consider
686686 # dropping the test entirely if it happens again.
687- self .skipTest (
688- "known OpenSSL misuse: hangs on macOS with Python 3.13+"
689- )
687+ self .skipTest ("known OpenSSL misuse: hangs on Python 3.13+" )
690688
691689 underscored_lock = self .client .query_single ("""
692690 SELECT EXISTS(
You can’t perform that action at this time.
0 commit comments