File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 = [
Original file line number Diff line number Diff 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 = [
You can’t perform that action at this time.
0 commit comments