We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ada1280 commit 2cfebf5Copy full SHA for 2cfebf5
test/test_encryption.py
@@ -639,6 +639,11 @@ def get_object_name(self, op):
639
def maybe_skip_scenario(self, test):
640
super().maybe_skip_scenario(test)
641
desc = test["description"].lower()
642
+ if (
643
+ "timeoutms applied to listcollections to get collection schema" in desc
644
+ and sys.platform in ("win32", "darwin")
645
+ ):
646
+ self.skipTest("PYTHON-3706 flaky test on Windows/macOS")
647
if "type=symbol" in desc:
648
self.skipTest("PyMongo does not support the symbol type")
649
0 commit comments