test: add first basic tests

This commit is contained in:
PlexSheep 2025-01-24 14:51:25 +01:00
parent 101813b4f7
commit 6873428933
No known key found for this signature in database
GPG key ID: 9EB784BB202BB7BB
2 changed files with 36 additions and 0 deletions

11
tests/conftest.py Normal file
View file

@ -0,0 +1,11 @@
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())