Method
__init__
(self, *, node: nodes.Node, argname: str, scope: Scope)
Source from the content-addressed store, hash-verified
| 1165 | """ |
| 1166 | |
| 1167 | def __init__(self, *, node: nodes.Node, argname: str, scope: Scope) -> None: |
| 1168 | super().__init__( |
| 1169 | config=node.config, |
| 1170 | baseid=NOTSET, |
| 1171 | argname=argname, |
| 1172 | func=get_direct_param_fixture_func, |
| 1173 | scope=scope, |
| 1174 | params=None, |
| 1175 | ids=None, |
| 1176 | node=node, |
| 1177 | _ispytest=True, |
| 1178 | ) |
| 1179 | |
| 1180 | |
| 1181 | # Used for storing fixturedefs for direct parametrization. |
Callers
nothing calls this directly
Tested by
no test coverage detected