Skip to content

Commit

Permalink
skip test for old python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
cunla committed Aug 3, 2024
1 parent 38b798b commit 29b386e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_asyncredis.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import asyncio
import re
import sys

Expand Down Expand Up @@ -330,7 +331,6 @@ async def test_init_args():
async def test_cause_fakeredis_bug(async_redis):
if sys.version_info < (3, 11):
return
import asyncio
async def worker_task():
assert await async_redis.rpush("list1", "list1_val") == 1 # 1
assert await async_redis.blpop("list2") == (b"list2", b"list2_val") # 4
Expand Down

0 comments on commit 29b386e

Please sign in to comment.