File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -342,6 +342,7 @@ def _id_and_mark(f):
342
342
greaterthanorequaldse50 = unittest .skipUnless (DSE_VERSION and DSE_VERSION >= Version ('5.0' ), "DSE 5.0 or greater required for this test" )
343
343
lessthandse51 = unittest .skipUnless (DSE_VERSION and DSE_VERSION < Version ('5.1' ), "DSE version less than 5.1 required" )
344
344
lessthandse60 = unittest .skipUnless (DSE_VERSION and DSE_VERSION < Version ('6.0' ), "DSE version less than 6.0 required" )
345
+ lessthandse69 = unittest .skipUnless (DSE_VERSION and DSE_VERSION < Version ('6.9' ), "DSE version less than 6.9 required" )
345
346
346
347
pypy = unittest .skipUnless (platform .python_implementation () == "PyPy" , "Test is skipped unless it's on PyPy" )
347
348
requiresmallclockgranularity = unittest .skipIf ("Windows" in platform .system () or "asyncore" in EVENT_LOOP_MANAGER ,
Original file line number Diff line number Diff line change 25
25
26
26
from tests .integration .cqlengine .base import BaseCassEngTestCase , TestQueryUpdateModel
27
27
from tests .integration .cqlengine import DEFAULT_KEYSPACE
28
- from tests .integration import greaterthanorequalcass3_10 , TestCluster
28
+ from tests .integration import greaterthanorequalcass3_10 , lessthandse69 , TestCluster
29
29
30
30
from cassandra .cqlengine .connection import execute
31
31
@@ -101,6 +101,7 @@ def test_insert_statement_execute(self):
101
101
self .assertEqual (TestQueryUpdateModel .objects .count (), 0 )
102
102
103
103
@greaterthanorequalcass3_10
104
+ @lessthandse69
104
105
def test_like_operator (self ):
105
106
"""
106
107
Test to verify the like operator works appropriately
You can’t perform that action at this time.
0 commit comments