Skip to content

Commit 43fa11c

Browse files
authored
PYTHON-4939 - Sync CSOT runCursorCommand test (mongodb#2221)
1 parent 4403169 commit 43fa11c

File tree

3 files changed

+593
-2
lines changed

3 files changed

+593
-2
lines changed

test/asynchronous/unified_format.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,11 @@ def maybe_skip_test(self, spec):
568568
self.skipTest("CSOT not implemented for watch()")
569569
if "cursors" in class_name:
570570
self.skipTest("CSOT not implemented for cursors")
571-
if "tailable" in class_name:
571+
if (
572+
"tailable" in class_name
573+
or "tailable" in description
574+
and "non-tailable" not in description
575+
):
572576
self.skipTest("CSOT not implemented for tailable cursors")
573577
if "sessions" in class_name:
574578
self.skipTest("CSOT not implemented for sessions")

0 commit comments

Comments
 (0)