Skip to content

Commit bf1c577

Browse files
authored
PYTHON-5966 Skip SERVER-128517-affected tests (#2963)
1 parent 78f3a79 commit bf1c577

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

test/asynchronous/unified_format.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,19 @@ def maybe_skip_test(self, spec):
586586
):
587587
self.skipTest("Implement PYTHON-4597")
588588

589+
# PYTHON-5966
590+
python_5966_tests = [
591+
"reset server and pool after network timeout error during authentication",
592+
"driver extends timeout while streaming",
593+
"connection pool clear uses interruptinuseconnections=true after monitor timeout",
594+
"error returned from connection pool clear with interruptinuseconnections=true is retryable",
595+
"error returned from connection pool clear with interruptinuseconnections=true is retryable for write",
596+
]
597+
if description in python_5966_tests:
598+
self.skipTest(
599+
"PYTHON pre-auth streamable hello floor causes spurious heartbeat timeouts"
600+
)
601+
589602
if "csot" in class_name:
590603
# Skip tests that are too slow to run on a given platform.
591604
slow_macos = [

test/unified_format.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -585,6 +585,19 @@ def maybe_skip_test(self, spec):
585585
):
586586
self.skipTest("Implement PYTHON-4597")
587587

588+
# PYTHON-5966
589+
python_5966_tests = [
590+
"reset server and pool after network timeout error during authentication",
591+
"driver extends timeout while streaming",
592+
"connection pool clear uses interruptinuseconnections=true after monitor timeout",
593+
"error returned from connection pool clear with interruptinuseconnections=true is retryable",
594+
"error returned from connection pool clear with interruptinuseconnections=true is retryable for write",
595+
]
596+
if description in python_5966_tests:
597+
self.skipTest(
598+
"PYTHON pre-auth streamable hello floor causes spurious heartbeat timeouts"
599+
)
600+
588601
if "csot" in class_name:
589602
# Skip tests that are too slow to run on a given platform.
590603
slow_macos = [

0 commit comments

Comments
 (0)