File tree 4 files changed +16
-12
lines changed
4 files changed +16
-12
lines changed Original file line number Diff line number Diff line change 1
1
click==8.0.4
2
2
black==22.3.0
3
- flake8==4 .0.1
3
+ flake8==5 .0.4
4
4
flynt~=0.69.0
5
5
isort==5.10.1
6
6
mock==4.0.3
7
7
packaging>=20.4
8
- pytest==6 .2.5
8
+ pytest==7 .2.0
9
9
pytest-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
12
12
tox-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
15
15
vulture>=2.3.0
16
16
ujson>=4.2.0
17
17
wheel>=0.30.0
Original file line number Diff line number Diff line change @@ -189,8 +189,8 @@ def _bin2ascii(self, der):
189
189
return cert
190
190
191
191
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.
194
194
"""
195
195
196
196
# 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):
262
262
263
263
@pytest .mark .redismod
264
264
async 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'}),
266
267
(:Rider {name:'Dani Pedrosa'})-[:rides]->(:Team {name:'Honda'}),
267
268
(:Rider {name:'Andrea Dovizioso'})-[:rides]->(:Team {name:'Ducati'})"""
268
269
await modclient .graph ().query (create_query )
@@ -395,7 +396,8 @@ async def test_multi_label(modclient: redis.Redis):
395
396
@pytest .mark .redismod
396
397
async def test_execution_plan (modclient : redis .Redis ):
397
398
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'}),
399
401
(:Rider {name:'Dani Pedrosa'})-[:rides]->(:Team {name:'Honda'}),
400
402
(:Rider {name:'Andrea Dovizioso'})-[:rides]->(:Team {name:'Ducati'})"""
401
403
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):
280
280
281
281
@pytest .mark .redismod
282
282
def 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'}),
284
285
(:Rider {name:'Dani Pedrosa'})-[:rides]->(:Team {name:'Honda'}),
285
286
(:Rider {name:'Andrea Dovizioso'})-[:rides]->(:Team {name:'Ducati'})"""
286
287
client .graph ().query (create_query )
@@ -486,7 +487,8 @@ def test_cache_sync(client):
486
487
@pytest .mark .redismod
487
488
def test_execution_plan (client ):
488
489
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'}),
490
492
(:Rider {name:'Dani Pedrosa'})-[:rides]->(:Team {name:'Honda'}),
491
493
(:Rider {name:'Andrea Dovizioso'})-[:rides]->(:Team {name:'Ducati'})"""
492
494
redis_graph .query (create_query )
You can’t perform that action at this time.
0 commit comments