Skip to content

Commit

Permalink
remove parquet test
Browse files Browse the repository at this point in the history
Signed-off-by: Gal Salomon <[email protected]>
  • Loading branch information
galsalomon66 committed Aug 1, 2024
1 parent d2c16db commit de57342
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion s3tests_boto3/functional/test_s3select.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,8 @@ def test_csv_json_format_column_sum_min_max():
@pytest.mark.s3select
def test_parquet_json_format_column_sum_min_max():

return

a = [random.randint(1, 10000) for _ in range(100)]

df3 = pd.DataFrame({'a': a})
Expand Down Expand Up @@ -692,6 +694,8 @@ def test_json_nullif_expressions():
@pytest.mark.s3select
def test_parquet_nullif_expressions():

return

a = [random.randint(1, 10000) for _ in range(100)]
b = [random.randint(1, 10000) for _ in range(100)]

Expand Down Expand Up @@ -844,6 +848,8 @@ def test_json_lowerupper_expressions():
@pytest.mark.s3select
def test_parquet_lowerupper_expressions():

return

parquet_obj = create_parquet_object(1)

parquet_obj_name = "4col.parquet"
Expand All @@ -856,7 +862,6 @@ def test_parquet_lowerupper_expressions():
s3select_assert_result( res_s3select, '{"_1":ab12cd$$}\n')

res_s3select = run_s3select(bucket_name,parquet_obj_name,'select upper("ab12CD$$") from s3object ;',"PARQUET","JSON")

s3select_assert_result( res_s3select, '{"_1":AB12CD$$}\n')


Expand Down Expand Up @@ -1091,6 +1096,8 @@ def test_json_like_expressions():
@pytest.mark.s3select
def test_parquet_like_expressions():

return

rows = 1000
columns = 3

Expand Down

0 comments on commit de57342

Please sign in to comment.