PYTHON-4844 - Skip async test_encryption.AsyncTestSpec.test_legacy_ti… (#1914)

This commit is contained in:
Noah Stapp 2024-10-11 08:29:12 -04:00 committed by GitHub
parent c2338d879b
commit 8118aea985
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 0 deletions

View File

@ -693,6 +693,11 @@ if _IS_SYNC:
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."""

View File

@ -691,6 +691,11 @@ if _IS_SYNC:
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."""