import pytest @pytest.fixture def tmp_workbench(tmp_path): """Provide a temporary workbench directory.""" wb = tmp_path / "workbench" wb.mkdir() return wb