File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,12 @@ def check_version_2(env):
47
47
return True
48
48
return False
49
49
50
+ def check_edge (env ):
51
+ v = env .execute_command ('MODULE LIST' )[0 ][3 ]
52
+ if v is "999999" :
53
+ return True
54
+ return False
55
+
50
56
class RedisSearchTestCase (ModuleTestCase ('../module.so' )):
51
57
52
58
def createIndex (self , client , num_docs = 100 , definition = None ):
@@ -230,6 +236,8 @@ def testPayloads(self):
230
236
conn = self .redis ()
231
237
232
238
with conn as r :
239
+ if not check_edge (r ):
240
+ return
233
241
# Creating a client with a given index name
234
242
client = Client ('idx' , port = conn .port )
235
243
client .redis .flushdb ()
@@ -802,6 +810,8 @@ def testGet(self):
802
810
803
811
def testConfig (self ):
804
812
client = self .getCleanClient ('idx' )
813
+ if not check_edge (client .redis ):
814
+ return
805
815
self .assertTrue (client .config_set ('TIMEOUT' , '100' ))
806
816
with self .assertRaises (redis .ResponseError ) as error :
807
817
client .config_set ('TIMEOUT' , "null" )
You can’t perform that action at this time.
0 commit comments