(self, notebook_configs: list[dict])
| 166 | |
| 167 | class _NotebookPlugin: |
| 168 | def __init__(self, notebook_configs: list[dict]) -> None: |
| 169 | self.notebook_configs = notebook_configs |
| 170 | |
| 171 | def pytest_generate_tests(self, metafunc) -> None: |
| 172 | if "notebook_config" in metafunc.fixturenames: |
nothing calls this directly
no outgoing calls
no test coverage detected