Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions test/asynchronous/unified_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,19 @@ def maybe_skip_test(self, spec):
):
self.skipTest("Implement PYTHON-4597")

# PYTHON-5966
python_5966_tests = [
"reset server and pool after network timeout error during authentication",
"driver extends timeout while streaming",
"connection pool clear uses interruptinuseconnections=true after monitor timeout",
"error returned from connection pool clear with interruptinuseconnections=true is retryable",
"error returned from connection pool clear with interruptinuseconnections=true is retryable for write",
]
if description in python_5966_tests:
self.skipTest(
"PYTHON pre-auth streamable hello floor causes spurious heartbeat timeouts"
)

if "csot" in class_name:
# Skip tests that are too slow to run on a given platform.
slow_macos = [
Expand Down
13 changes: 13 additions & 0 deletions test/unified_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -585,6 +585,19 @@ def maybe_skip_test(self, spec):
):
self.skipTest("Implement PYTHON-4597")

# PYTHON-5966
python_5966_tests = [
"reset server and pool after network timeout error during authentication",
"driver extends timeout while streaming",
"connection pool clear uses interruptinuseconnections=true after monitor timeout",
"error returned from connection pool clear with interruptinuseconnections=true is retryable",
"error returned from connection pool clear with interruptinuseconnections=true is retryable for write",
]
if description in python_5966_tests:
Comment on lines +588 to +596
self.skipTest(
"PYTHON pre-auth streamable hello floor causes spurious heartbeat timeouts"
)

if "csot" in class_name:
# Skip tests that are too slow to run on a given platform.
slow_macos = [
Expand Down
Loading