Execute the underlying test function.
(self)
| 1714 | return self |
| 1715 | |
| 1716 | def runtest(self) -> None: |
| 1717 | """Execute the underlying test function.""" |
| 1718 | self.ihook.pytest_pyfunc_call(pyfuncitem=self) |
| 1719 | |
| 1720 | def setup(self) -> None: |
| 1721 | self._request._fillfixtures() |
nothing calls this directly
no test coverage detected