Skip to content

Commit

Permalink
[ci] Speed up a test case (#3692)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl authored Feb 13, 2025
1 parent cc33291 commit d39ade8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apis/python/tests/test_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@ def test_io_create_from_matrix_sparse_nd_array(

@pytest.mark.parametrize(
"num_rows",
[0, 1, 2, 3, 4, 10, 100, 1_000, 10_000],
[0, 1, 2, 3, 4, 10, 100, 1_000],
)
@pytest.mark.parametrize(
"cap_nbytes",
[1, 100, 1_000, 10_000],
[1, 100, 1_000],
)
def test_write_arrow_table(tmp_path, num_rows, cap_nbytes):
"""
Expand Down

0 comments on commit d39ade8

Please sign in to comment.