(self, item)
| 94 | |
| 95 | @pytest.hookimpl(hookwrapper=True) |
| 96 | def pytest_runtest_setup(self, item): |
| 97 | if item.get_closest_marker("ignored"): |
| 98 | if not item.config.getvalue("ignored"): |
| 99 | pytest.skip("use --ignored to run this test") |
| 100 | self.enable_logging(item) |
| 101 | yield |
| 102 | self.disable_logging(item) |
| 103 | |
| 104 | @pytest.hookimpl(hookwrapper=True) |
| 105 | def pytest_pyfunc_call(self, pyfuncitem): |
nothing calls this directly
no test coverage detected