Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions test/asynchronous/test_encryption.py
Original file line number Diff line number Diff line change
Expand Up @@ -693,6 +693,11 @@ def maybe_skip_scenario(self, test):
self.skipTest("PYTHON-3706 flaky test on Windows/macOS")
if "type=symbol" in desc:
self.skipTest("PyMongo does not support the symbol type")
if (
"timeoutms applied to listcollections to get collection schema" in desc
and not _IS_SYNC
):
self.skipTest("PYTHON-4844 flaky test on async")

def setup_scenario(self, scenario_def):
"""Override a test's setup."""
Expand Down
5 changes: 5 additions & 0 deletions test/test_encryption.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,11 @@ def maybe_skip_scenario(self, test):
self.skipTest("PYTHON-3706 flaky test on Windows/macOS")
if "type=symbol" in desc:
self.skipTest("PyMongo does not support the symbol type")
if (
"timeoutms applied to listcollections to get collection schema" in desc
and not _IS_SYNC
):
self.skipTest("PYTHON-4844 flaky test on async")

def setup_scenario(self, scenario_def):
"""Override a test's setup."""
Expand Down
Loading