(pytester: Pytester, **kwargs: Any)
| 360 | |
| 361 | @staticmethod |
| 362 | def make_function(pytester: Pytester, **kwargs: Any) -> Any: |
| 363 | from _pytest.fixtures import FixtureManager |
| 364 | |
| 365 | config = pytester.parseconfigure() |
| 366 | session = Session.from_config(config) |
| 367 | session._fixturemanager = FixtureManager(session) |
| 368 | |
| 369 | return pytest.Function.from_parent(parent=session, **kwargs) |
| 370 | |
| 371 | def test_function_equality(self, pytester: Pytester) -> None: |
| 372 | def func1(): |