(pytester: Pytester, **kwargs: Any)
| 292 | |
| 293 | @staticmethod |
| 294 | def make_function(pytester: Pytester, **kwargs: Any) -> Any: |
| 295 | from _pytest.fixtures import FixtureManager |
| 296 | |
| 297 | config = pytester.parseconfigure() |
| 298 | session = Session.from_config(config) |
| 299 | session._fixturemanager = FixtureManager(session) |
| 300 | |
| 301 | return pytest.Function.from_parent(parent=session, **kwargs) |
| 302 | |
| 303 | def test_function_equality(self, pytester: Pytester) -> None: |
| 304 | def func1(): |