File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -551,6 +551,12 @@ def maybe_skip_test(self, spec):
551
551
self .skipTest ("PYTHON-5170 tests are flakey" )
552
552
if "Driver extends timeout while streaming" in spec ["description" ] and not _IS_SYNC :
553
553
self .skipTest ("PYTHON-5174 tests are flakey" )
554
+ if (
555
+ "inserting _id with type null via clientBulkWrite" in spec ["description" ]
556
+ or "commitTransaction fails after Interrupted" in spec ["description" ]
557
+ or "commit is not retried after MaxTimeMSExpired error" in spec ["description" ]
558
+ ) and async_client_context .serverless :
559
+ self .skipTest ("PYTHON-5326 known serverless failures" )
554
560
555
561
class_name = self .__class__ .__name__ .lower ()
556
562
description = spec ["description" ].lower ()
Original file line number Diff line number Diff line change @@ -550,6 +550,12 @@ def maybe_skip_test(self, spec):
550
550
self .skipTest ("PYTHON-5170 tests are flakey" )
551
551
if "Driver extends timeout while streaming" in spec ["description" ] and not _IS_SYNC :
552
552
self .skipTest ("PYTHON-5174 tests are flakey" )
553
+ if (
554
+ "inserting _id with type null via clientBulkWrite" in spec ["description" ]
555
+ or "commitTransaction fails after Interrupted" in spec ["description" ]
556
+ or "commit is not retried after MaxTimeMSExpired error" in spec ["description" ]
557
+ ) and client_context .serverless :
558
+ self .skipTest ("PYTHON-5326 known serverless failures" )
553
559
554
560
class_name = self .__class__ .__name__ .lower ()
555
561
description = spec ["description" ].lower ()
You can’t perform that action at this time.
0 commit comments