We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6994e1 commit 4ad5d08Copy full SHA for 4ad5d08
testing/benchmark.py
@@ -4,7 +4,7 @@
4
import pytest
5
from pluggy import HookspecMarker, HookimplMarker
6
from pluggy.hooks import HookImpl
7
-from pluggy.callers import _multicall
+from pluggy.callers import _multicall, _c_multicall
8
9
hookspec = HookspecMarker("example")
10
hookimpl = HookimplMarker("example")
@@ -38,7 +38,10 @@ def wrappers(request):
38
return [wrapper for i in range(request.param)]
39
40
41
-@pytest.fixture(params=[_multicall], ids=lambda item: item.__name__)
+@pytest.fixture(
42
+ params=[_multicall, _c_multicall],
43
+ ids=lambda item: item.__name__
44
+)
45
def callertype(request):
46
return request.param
47
0 commit comments