Files
dss/tests/conftest.py
2025-12-11 07:13:06 -03:00

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