add basic functionality and corresponding tests

This commit is contained in:
2025-03-13 16:36:18 +01:00
parent 48881e882c
commit 2db39b536e
15 changed files with 1026 additions and 2 deletions

12
tests/conftest.py Normal file
View File

@@ -0,0 +1,12 @@
from pathlib import Path
import pytest
@pytest.fixture(scope="session")
def root_data_folder() -> Path:
pth = Path.cwd() / "tests/_test_data/"
assert pth.exists()
assert pth.is_dir()
return pth