@@ -533,16 +533,17 @@ def maybe_skip_test(self, spec):
533
533
class_name = self .__class__ .__name__ .lower ()
534
534
description = spec ["description" ].lower ()
535
535
if "csot" in class_name :
536
+ # Skip tests that are too slow to run on a given platform.
536
537
slow_win32 = [
537
- "maxTimeMS value in the command is less than timeoutMS " ,
538
- "Non -tailable cursor lifetime remaining timeoutMS applied to getMore if timeoutMode is unset" ,
539
- "timeoutMS applied to update during a rename" ,
540
- "timeoutMS applied to find to get chunks" ,
541
- "test timeoutMS applied to find to get files document" ,
542
- "test timeoutMS applied to find command" ,
538
+ "maxtimems value in the command is less than maxtimems " ,
539
+ "non -tailable cursor lifetime remaining maxtimems applied to getmore if timeoutmode is unset" ,
540
+ "maxtimems applied to update during a rename" ,
541
+ "maxtimems applied to find to get chunks" ,
542
+ "maxtimems applied to find to get files document" ,
543
+ "maxtimems applied to find command" ,
543
544
]
544
545
slow_macos = [
545
- "Non -tailable cursor lifetime remaining timeoutMS applied to getMore if timeoutMode is unset"
546
+ "non -tailable cursor lifetime remaining maxtimems applied to getmore if timeoutmode is unset"
546
547
]
547
548
if sys .platform == "win32" and description in slow_win32 :
548
549
self .skipTest ("PYTHON-3522 CSOT test run too slow on Windows" )
0 commit comments