(self, pyfuncitem)
| 103 | |
| 104 | @pytest.hookimpl(hookwrapper=True) |
| 105 | def pytest_pyfunc_call(self, pyfuncitem): |
| 106 | self.enable_logging(pyfuncitem) |
| 107 | yield |
| 108 | self.disable_logging(pyfuncitem) |
| 109 | |
| 110 | @pytest.hookimpl(hookwrapper=True) |
| 111 | def pytest_runtest_teardown(self, item): |
nothing calls this directly
no test coverage detected