Skip to content

Commit 009f739

Browse files
committed
remove pedantic mode
1 parent ba2c4cf commit 009f739

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/benchmarks/test_e2e.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def test_write_array(
6565
fill_value=0,
6666
)
6767

68-
benchmark.pedantic(setitem, args=(arr, Ellipsis, 1), rounds=16)
68+
benchmark(setitem, arr, Ellipsis, 1)
6969

7070

7171
@pytest.mark.parametrize("compression_name", [None, "gzip"])
@@ -87,4 +87,4 @@ def test_read_array(
8787
fill_value=0,
8888
)
8989
arr[:] = 1
90-
benchmark.pedantic(getitem, args=(arr, Ellipsis), rounds=16)
90+
benchmark(getitem, arr, Ellipsis)

0 commit comments

Comments
 (0)