Skip to content

Commit

Permalink
PYTHON-3706 Skip flaky test on Windows/macOS (#1241)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneHarvey committed Jun 15, 2023
1 parent ada1280 commit 2cfebf5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/test_encryption.py
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,11 @@ def get_object_name(self, op):
def maybe_skip_scenario(self, test):
super().maybe_skip_scenario(test)
desc = test["description"].lower()
if (
"timeoutms applied to listcollections to get collection schema" in desc
and sys.platform in ("win32", "darwin")
):
self.skipTest("PYTHON-3706 flaky test on Windows/macOS")
if "type=symbol" in desc:
self.skipTest("PyMongo does not support the symbol type")

Expand Down

0 comments on commit 2cfebf5

Please sign in to comment.