Skip to content

Commit 0855a56

Browse files
committed
Changed version restrictions
1 parent 12e6b49 commit 0855a56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_asyncio/test_connection.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ async def get_redis_connection():
317317

318318

319319
@pytest.mark.onlynoncluster
320-
@pytest.mark.skipif(sys.version_info < (3, 8), reason="requires python > 3.8")
320+
@pytest.mark.skipif(sys.version_info < (3, 9), reason="requires python > 3.8")
321321
async def test_client_do_not_retry_write_on_read_failure(mock_connection, mock_pool):
322322
mock_connection.send_command.return_value = True
323323
mock_connection.read_response.side_effect = [
@@ -343,7 +343,7 @@ async def test_client_do_not_retry_write_on_read_failure(mock_connection, mock_p
343343

344344

345345
@pytest.mark.onlynoncluster
346-
@pytest.mark.skipif(sys.version_info < (3, 8), reason="requires python > 3.8")
346+
@pytest.mark.skipif(sys.version_info < (3, 9), reason="requires python > 3.8")
347347
async def test_pipeline_immediate_do_not_retry_write_on_read_failure(
348348
mock_connection, mock_pool
349349
):

0 commit comments

Comments
 (0)