Skip to content

Commit

Permalink
Use valid values for row_group/max_page_size_bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
wence- committed Nov 19, 2024
1 parent 4d802f2 commit 91e847e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/pylibcudf/pylibcudf/tests/io/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ def test_read_parquet_filters(
[None, [plc.io.types.PartitionInfo(0, 10)]],
)
@pytest.mark.parametrize("column_chunks_file_paths", [None, ["tmp.parquet"]])
@pytest.mark.parametrize("row_group_size_bytes", [None, 100])
@pytest.mark.parametrize("row_group_size_bytes", [None, 1024])
@pytest.mark.parametrize("row_group_size_rows", [None, 1])
@pytest.mark.parametrize("max_page_size_bytes", [None, 100])
@pytest.mark.parametrize("max_page_size_bytes", [None, 1024])
@pytest.mark.parametrize("max_page_size_rows", [None, 1])
@pytest.mark.parametrize("max_dictionary_size", [None, 100])
def test_write_parquet(
Expand Down

0 comments on commit 91e847e

Please sign in to comment.