Skip to content

Commit d77e8ab

Browse files
committed
Merge branch 'master' of github.com:mongodb/mongo-python-driver
2 parents 3feb663 + 43fa11c commit d77e8ab

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)