mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-06-30 17:24:22 +00:00
11 lines
234 B
Python
11 lines
234 B
Python
from pathlib import Path
|
|
|
|
import pytest
|
|
from pytest_django.fixtures import SettingsWrapper
|
|
|
|
|
|
@pytest.fixture
|
|
def temp_llm_index_dir(tmp_path: Path, settings: SettingsWrapper):
|
|
settings.LLM_INDEX_DIR = tmp_path
|
|
return tmp_path
|