Skip to content

Commit

Permalink
reduce test size
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin Ho authored and Colin Ho committed Oct 25, 2024
1 parent cffe79a commit 3485573
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/io/test_write_modes.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ def arrange_write_mode_test(existing_data, new_data, path, format, write_mode, p

@pytest.mark.parametrize("write_mode", ["append", "overwrite"])
@pytest.mark.parametrize("format", ["csv", "parquet"])
@pytest.mark.parametrize("num_partitions", [1, 50, 100])
@pytest.mark.parametrize("num_partitions", [1, 2])
@pytest.mark.parametrize("partition_cols", [None, ["a"]])
def test_write_modes_local(tmp_path, write_mode, format, num_partitions, partition_cols):
path = str(tmp_path)
existing_data = {"a": [i for i in range(100)]}
existing_data = {"a": [i for i in range(10)]}
new_data = {
"a": [i for i in range(100, 200)],
"a": [i for i in range(10, 20)],
}

read_back = arrange_write_mode_test(
Expand Down

0 comments on commit 3485573

Please sign in to comment.