Fixes a corrupted index not being handled by whoosh.create_in (#5950)

This commit is contained in:
Trenton H
2024-02-28 16:07:17 -08:00
committed by GitHub
parent 3d8de50b5a
commit fba416e8e1
2 changed files with 8 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
import shutil
import tempfile
from collections.abc import Iterable
from pathlib import Path
from random import randint
from django.contrib.admin.models import LogEntry
@@ -396,7 +397,7 @@ class TestDocumentConsumptionFinishedSignal(TestCase):
mime_type="application/pdf",
)
self.index_dir = tempfile.mkdtemp()
self.index_dir = Path(tempfile.mkdtemp())
# TODO: we should not need the index here.
override_settings(INDEX_DIR=self.index_dir).enable()