File tree Expand file tree Collapse file tree 4 files changed +16
-12
lines changed Expand file tree Collapse file tree 4 files changed +16
-12
lines changed Original file line number Diff line number Diff line change 11click==8.0.4
22black==22.3.0
3- flake8==4 .0.1
3+ flake8==5 .0.4
44flynt~=0.69.0
55isort==5.10.1
66mock==4.0.3
77packaging>=20.4
8- pytest==6 .2.5
8+ pytest==7 .2.0
99pytest-timeout==2.0.1
10- pytest-asyncio>=0.16.0
11- tox==3.24.4
10+ pytest-asyncio>=0.20.2
11+ tox==3.27.1
1212tox-docker==3.1.0
13- invoke==1.6.0
14- pytest-cov>=3 .0.0
13+ invoke==1.7.3
14+ pytest-cov>=4 .0.0
1515vulture>=2.3.0
1616ujson>=4.2.0
1717wheel>=0.30.0
Original file line number Diff line number Diff line change @@ -189,8 +189,8 @@ def _bin2ascii(self, der):
189189 return cert
190190
191191 def components_from_socket (self ):
192- """This function returns the certificate, primary issuer, and primary ocsp server
193- in the chain for a socket already wrapped with ssl.
192+ """This function returns the certificate, primary issuer, and primary ocsp
193+ server in the chain for a socket already wrapped with ssl.
194194 """
195195
196196 # convert the binary certifcate to text
Original file line number Diff line number Diff line change @@ -262,7 +262,8 @@ async def test_cached_execution(modclient: redis.Redis):
262262
263263@pytest .mark .redismod
264264async def test_slowlog (modclient : redis .Redis ):
265- create_query = """CREATE (:Rider {name:'Valentino Rossi'})-[:rides]->(:Team {name:'Yamaha'}),
265+ create_query = """CREATE
266+ (:Rider {name:'Valentino Rossi'})-[:rides]->(:Team {name:'Yamaha'}),
266267 (:Rider {name:'Dani Pedrosa'})-[:rides]->(:Team {name:'Honda'}),
267268 (:Rider {name:'Andrea Dovizioso'})-[:rides]->(:Team {name:'Ducati'})"""
268269 await modclient .graph ().query (create_query )
@@ -395,7 +396,8 @@ async def test_multi_label(modclient: redis.Redis):
395396@pytest .mark .redismod
396397async def test_execution_plan (modclient : redis .Redis ):
397398 redis_graph = modclient .graph ("execution_plan" )
398- create_query = """CREATE (:Rider {name:'Valentino Rossi'})-[:rides]->(:Team {name:'Yamaha'}),
399+ create_query = """CREATE
400+ (:Rider {name:'Valentino Rossi'})-[:rides]->(:Team {name:'Yamaha'}),
399401 (:Rider {name:'Dani Pedrosa'})-[:rides]->(:Team {name:'Honda'}),
400402 (:Rider {name:'Andrea Dovizioso'})-[:rides]->(:Team {name:'Ducati'})"""
401403 await redis_graph .query (create_query )
Original file line number Diff line number Diff line change @@ -280,7 +280,8 @@ def test_cached_execution(client):
280280
281281@pytest .mark .redismod
282282def test_slowlog (client ):
283- create_query = """CREATE (:Rider {name:'Valentino Rossi'})-[:rides]->(:Team {name:'Yamaha'}),
283+ create_query = """CREATE (:Rider
284+ {name:'Valentino Rossi'})-[:rides]->(:Team {name:'Yamaha'}),
284285 (:Rider {name:'Dani Pedrosa'})-[:rides]->(:Team {name:'Honda'}),
285286 (:Rider {name:'Andrea Dovizioso'})-[:rides]->(:Team {name:'Ducati'})"""
286287 client .graph ().query (create_query )
@@ -486,7 +487,8 @@ def test_cache_sync(client):
486487@pytest .mark .redismod
487488def test_execution_plan (client ):
488489 redis_graph = client .graph ("execution_plan" )
489- create_query = """CREATE (:Rider {name:'Valentino Rossi'})-[:rides]->(:Team {name:'Yamaha'}),
490+ create_query = """CREATE
491+ (:Rider {name:'Valentino Rossi'})-[:rides]->(:Team {name:'Yamaha'}),
490492 (:Rider {name:'Dani Pedrosa'})-[:rides]->(:Team {name:'Honda'}),
491493 (:Rider {name:'Andrea Dovizioso'})-[:rides]->(:Team {name:'Ducati'})"""
492494 redis_graph .query (create_query )
You can’t perform that action at this time.
0 commit comments