@@ -78,7 +78,7 @@ def test_read_full(path, mode, use_threads):
7878
7979@pytest .mark .parametrize ("use_threads" , [True , False ])
8080@pytest .mark .parametrize ("mode" , ["r" , "rb" ])
81- @pytest .mark .parametrize ("block_size" , [100 , 2 ])
81+ @pytest .mark .parametrize ("block_size" , [100 , 3 ])
8282def test_read_chunked (path , mode , block_size , use_threads ):
8383 client_s3 = boto3 .client ("s3" )
8484 path = f"{ path } 0.txt"
@@ -99,7 +99,7 @@ def test_read_chunked(path, mode, block_size, use_threads):
9999
100100@pytest .mark .parametrize ("use_threads" , [True , False ])
101101@pytest .mark .parametrize ("mode" , ["r" , "rb" ])
102- @pytest .mark .parametrize ("block_size" , [2 , 3 , 10 , 23 , 48 , 65 , 100 ])
102+ @pytest .mark .parametrize ("block_size" , [3 , 10 , 23 , 48 , 65 , 100 ])
103103def test_read_line (path , mode , block_size , use_threads ):
104104 client_s3 = boto3 .client ("s3" )
105105 path = f"{ path } 0.txt"
@@ -191,7 +191,7 @@ def test_pyarrow(path, glue_table, glue_database):
191191
192192
193193@pytest .mark .parametrize ("use_threads" , [True , False ])
194- @pytest .mark .parametrize ("block_size" , [2 , 3 , 5 , 8 , 9 , 15 ])
194+ @pytest .mark .parametrize ("block_size" , [3 , 5 , 8 , 9 , 15 ])
195195@pytest .mark .parametrize ("text" , ["012345678" , "0123456789" ])
196196def test_cache (path , use_threads , block_size , text ):
197197 client_s3 = boto3 .client ("s3" )
0 commit comments