11 lines
230 B
Python
11 lines
230 B
Python
"""This file contains shared fixtures for the test suite."""
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def temp_dir(tmp_path: Path) -> Path:
|
|
"""Creates a temporary directory for testing."""
|
|
return tmp_path
|