We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84d8d2f commit 00b375fCopy full SHA for 00b375f
test/test_collection.py
@@ -792,6 +792,9 @@ def test_cursor_timeout(self):
792
list(self.db.test.find(timeout=True))
793
794
def test_distinct(self):
795
+ if not version.at_least(self.db.connection(), (1, 1)):
796
+ raise SkipTest()
797
+
798
self.db.drop_collection("test")
799
800
self.db.test.save({"a": 1})
0 commit comments