Files
test-search-engine/tests/conftest.py
T
2026-08-07 13:15:43 +00:00

13 lines
269 B
Python

from __future__ import annotations
from pathlib import Path
import pytest
from app.matcher import CatalogMatcher
@pytest.fixture(scope="session")
def matcher() -> CatalogMatcher:
return CatalogMatcher(Path(__file__).resolve().parents[1] / "catalog_excel.csv")