Execute the underlying test function.
(self)
| 1703 | return self |
| 1704 | |
| 1705 | def runtest(self) -> None: |
| 1706 | """Execute the underlying test function.""" |
| 1707 | self.ihook.pytest_pyfunc_call(pyfuncitem=self) |
| 1708 | |
| 1709 | def setup(self) -> None: |
| 1710 | self._request._fillfixtures() |
nothing calls this directly
no test coverage detected