mirror of
https://github.com/senju1337/senju.git
synced 2025-12-24 07:39:29 +00:00
10 lines
201 B
Python
10 lines
201 B
Python
import tempfile
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def temp_data_dir():
|
|
"""Create a temporary directory for test data"""
|
|
return Path(tempfile.mkdtemp())
|