(self, item)
| 86 | acfactory.set_logging_default(False) |
| 87 | |
| 88 | def enable_logging(self, item): |
| 89 | for acc in self._accounts: |
| 90 | acc.enable_logging() |
| 91 | acfactory = item.funcargs.get("acfactory") |
| 92 | if acfactory: |
| 93 | acfactory.set_logging_default(True) |
| 94 | |
| 95 | @pytest.hookimpl(hookwrapper=True) |
| 96 | def pytest_runtest_setup(self, item): |
no test coverage detected