Skip to content

Commit 293a8fe

Browse files
committed
Skip on all platforms
1 parent a84ad22 commit 293a8fe

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

tests/test_sync_query.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)