8 lines
117 B
Python
8 lines
117 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def temp_dir(tmp_path):
|
|
"""Provide a temporary directory."""
|
|
return tmp_path
|