iscc-sct / tests /conftest.py
titusz's picture
Synced repo using 'sync_with_huggingface' Github Action
b31f748 verified
raw
history blame
261 Bytes
import pytest
from pathlib import Path
HERE = Path(__file__).parent.absolute()
@pytest.fixture
def text_en():
return (HERE / "en.txt").read_text(encoding="utf-8")
@pytest.fixture
def text_de():
return (HERE / "de.txt").read_text(encoding="utf-8")