Skip to content

Commit 938ba6d

Browse files
authored
Updating dev dependencies (redis#2475)
1 parent f32c835 commit 938ba6d

File tree

4 files changed

+16
-12
lines changed

4 files changed

+16
-12
lines changed

dev_requirements.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
click==8.0.4
22
black==22.3.0
3-
flake8==4.0.1
3+
flake8==5.0.4
44
flynt~=0.69.0
55
isort==5.10.1
66
mock==4.0.3
77
packaging>=20.4
8-
pytest==6.2.5
8+
pytest==7.2.0
99
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
1212
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
1515
vulture>=2.3.0
1616
ujson>=4.2.0
1717
wheel>=0.30.0

redis/ocsp.py

+2-2
Original file line numberDiff line numberDiff 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

tests/test_asyncio/test_graph.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,8 @@ async def test_cached_execution(modclient: redis.Redis):
262262

263263
@pytest.mark.redismod
264264
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'}),
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
396397
async 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)

tests/test_graph.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,8 @@ def test_cached_execution(client):
280280

281281
@pytest.mark.redismod
282282
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'}),
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
487488
def 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)

0 commit comments

Comments
 (0)