kalshi-csv/tests/conftest.py
2026-07-18 13:34:47 -04:00

8 lines
203 B
Python

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")