Files
workbench-server/tests/conftest.py
T
2026-03-30 07:30:24 -04:00

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