(tmp_path)
| 165 | |
| 166 | @pytest.fixture(scope='function') |
| 167 | def interface(tmp_path): |
| 168 | from tests.utils import MockEnvironment |
| 169 | |
| 170 | return Interface( |
| 171 | path=tmp_path / 'interface', |
| 172 | environment=MockEnvironment() |
| 173 | ) |
| 174 | |
| 175 | |
| 176 | @pytest.fixture(scope='function') |
nothing calls this directly
no test coverage detected