mirror of
https://github.com/DS4SD/docling.git
synced 2025-07-25 19:44:34 +00:00
11 lines
157 B
Python
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
|