mirror of
https://github.com/DS4SD/docling.git
synced 2025-07-26 12:04:31 +00:00
disable GT generation on test_interfaces
Signed-off-by: Christoph Auer <cau@zurich.ibm.com>
This commit is contained in:
parent
9359f86c6a
commit
75a03c4257
@ -3,17 +3,12 @@ from pathlib import Path
|
|||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from docling.backend.docling_parse_backend import DoclingParseDocumentBackend
|
|
||||||
from docling.backend.docling_parse_v4_backend import DoclingParseV4DocumentBackend
|
|
||||||
from docling.datamodel.base_models import DocumentStream, InputFormat
|
from docling.datamodel.base_models import DocumentStream, InputFormat
|
||||||
from docling.datamodel.pipeline_options import PdfPipelineOptions
|
from docling.datamodel.pipeline_options import PdfPipelineOptions
|
||||||
from docling.document_converter import DocumentConverter, PdfFormatOption
|
from docling.document_converter import DocumentConverter, PdfFormatOption
|
||||||
|
|
||||||
from .test_data_gen_flag import GEN_TEST_DATA
|
|
||||||
from .verify_utils import verify_conversion_result_v1, verify_conversion_result_v2
|
from .verify_utils import verify_conversion_result_v1, verify_conversion_result_v2
|
||||||
|
|
||||||
GENERATE = GEN_TEST_DATA
|
|
||||||
|
|
||||||
|
|
||||||
def get_pdf_path():
|
def get_pdf_path():
|
||||||
|
|
||||||
@ -47,10 +42,14 @@ def test_convert_path(converter: DocumentConverter):
|
|||||||
|
|
||||||
doc_result = converter.convert(pdf_path)
|
doc_result = converter.convert(pdf_path)
|
||||||
verify_conversion_result_v1(
|
verify_conversion_result_v1(
|
||||||
input_path=pdf_path, doc_result=doc_result, generate=GENERATE
|
input_path=pdf_path,
|
||||||
|
doc_result=doc_result,
|
||||||
|
generate=False, # already covered on other test
|
||||||
)
|
)
|
||||||
verify_conversion_result_v2(
|
verify_conversion_result_v2(
|
||||||
input_path=pdf_path, doc_result=doc_result, generate=GENERATE
|
input_path=pdf_path,
|
||||||
|
doc_result=doc_result,
|
||||||
|
generate=False, # already covered on other test
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -64,8 +63,12 @@ def test_convert_stream(converter: DocumentConverter):
|
|||||||
|
|
||||||
doc_result = converter.convert(stream)
|
doc_result = converter.convert(stream)
|
||||||
verify_conversion_result_v1(
|
verify_conversion_result_v1(
|
||||||
input_path=pdf_path, doc_result=doc_result, generate=GENERATE
|
input_path=pdf_path,
|
||||||
|
doc_result=doc_result,
|
||||||
|
generate=False, # already covered on other test
|
||||||
)
|
)
|
||||||
verify_conversion_result_v2(
|
verify_conversion_result_v2(
|
||||||
input_path=pdf_path, doc_result=doc_result, generate=GENERATE
|
input_path=pdf_path,
|
||||||
|
doc_result=doc_result,
|
||||||
|
generate=False, # already covered on other test
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user