docling/tests/conftest.py
2025-07-12 20:10:27 -05:00

11 lines
157 B
Python

from pathlib import Path
import pytest
TEST_DATA_DIR = Path("./tests/data/")
@pytest.fixture
def test_data_directory() -> Path:
return TEST_DATA_DIR