16815ed6bb
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
172 B
Python
9 lines
172 B
Python
import pytest
|
|
|
|
@pytest.fixture
|
|
def tmp_workbench(tmp_path):
|
|
"""Provide a temporary workbench directory."""
|
|
wb = tmp_path / "workbench"
|
|
wb.mkdir()
|
|
return wb
|