Skip to content

Commit 7791b9c

Browse files
author
Tyler Goodlet
committed
Use a smaller range of hooks when benchmarking
1 parent 2f5109a commit 7791b9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testing/benchmark.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ def wrapper(arg1, arg2, arg3):
2828

2929

3030
@pytest.fixture(
31-
params=[0, 1, 10, 100],
31+
params=[10, 100],
3232
ids="hooks={}".format,
3333
)
3434
def hooks(request):
3535
return [hook for i in range(request.param)]
3636

3737

3838
@pytest.fixture(
39-
params=[0, 1, 10, 100],
39+
params=[10, 100],
4040
ids="wrappers={}".format,
4141
)
4242
def wrappers(request):

0 commit comments

Comments
 (0)