We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf3cd4c commit d1c68f8Copy full SHA for d1c68f8
pytest_asyncio/plugin.py
@@ -247,18 +247,6 @@ def _fixture_synchronizer(
247
return fixturedef.func
248
249
250
-def _add_kwargs(
251
- func: Callable[..., Any],
252
- kwargs: dict[str, Any],
253
- request: FixtureRequest,
254
-) -> dict[str, Any]:
255
- sig = inspect.signature(func)
256
- ret = kwargs.copy()
257
- if "request" in sig.parameters:
258
- ret["request"] = request
259
- return ret
260
-
261
262
AsyncGenFixtureParams = ParamSpec("AsyncGenFixtureParams")
263
AsyncGenFixtureYieldType = TypeVar("AsyncGenFixtureYieldType")
264
0 commit comments