PYTHON-4844 - Skip async test_encryption.AsyncTestSpec.test_legacy_ti… (#1914)
This commit is contained in:
parent
c2338d879b
commit
8118aea985
@ -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."""
|
||||
|
||||
@ -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."""
|
||||
|
||||
Loading…
Reference in New Issue
Block a user