Skip to content

Commit

Permalink
chore: Fix csv benchmark test (#3631)
Browse files Browse the repository at this point in the history
Co-authored-by: Colin Ho <colinho@Colins-MacBook-Pro.local>
  • Loading branch information
colin-ho and Colin Ho authored Dec 20, 2024
1 parent eabd029 commit f9a89a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/microbenchmarks/test_file_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def gen_simple_csvs(request) -> str:
yield tmpdirname, num_files * mibs_per_file * 1024 * 128


@pytest.mark.skipif(get_tests_daft_runner_name(), reason="requires local runner")
@pytest.mark.skipif(get_tests_daft_runner_name() not in {"native", "py"}, reason="requires local runner")
@pytest.mark.benchmark(group="file_read")
def test_csv_read(gen_simple_csvs, benchmark):
csv_dir, num_rows = gen_simple_csvs
Expand Down

0 comments on commit f9a89a7

Please sign in to comment.