Structure into library for pip

This commit is contained in:
mark 2026-07-18 13:34:47 -04:00
commit 25ad16dac2
12 changed files with 540 additions and 99 deletions

8
tests/conftest.py Normal file
View file

@ -0,0 +1,8 @@
import pytest
from pathlib import Path
@pytest.fixture
def sample_csv():
"""Returns the path to the synthetic test CSV fixture."""
return str(Path(__file__).parent / "fixtures" / "sample.csv")