(self, metafunc)
| 169 | self.notebook_configs = notebook_configs |
| 170 | |
| 171 | def pytest_generate_tests(self, metafunc) -> None: |
| 172 | if "notebook_config" in metafunc.fixturenames: |
| 173 | metafunc.parametrize("notebook_config", self.notebook_configs) |
| 174 | |
| 175 | |
| 176 | def test_notebook_execution(notebook_config: dict) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected