Skip to content

Commit 2cfebf5

Browse files
authored
PYTHON-3706 Skip flaky test on Windows/macOS (#1241)
1 parent ada1280 commit 2cfebf5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/test_encryption.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -639,6 +639,11 @@ def get_object_name(self, op):
639639
def maybe_skip_scenario(self, test):
640640
super().maybe_skip_scenario(test)
641641
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")
642647
if "type=symbol" in desc:
643648
self.skipTest("PyMongo does not support the symbol type")
644649

0 commit comments

Comments
 (0)